Getting started with Stream.apex
Create Streams
We have various ways to create streams in Stream.apex.
Stream.of(1); // Create a stream with element 1
Stream.with(1, 2, 3); // Create a stream with elements 1, 2, 3
Stream.fromData(new List
We have various ways to create streams in Stream.apex.
Stream.of(1); // Create a stream with element 1
Stream.with(1, 2, 3); // Create a stream with elements 1, 2, 3
Stream.fromData(new List