Class PandaStream<T>

java.lang.Object
panda.std.stream.PandaStream<T>
Type Parameters:
T -
All Implemented Interfaces:
AutoCloseable

public class PandaStream<T> extends Object implements AutoCloseable
Simple wrapper to combine standard Stream API with wrappers like Option or Result, and some extra features. Most methods are lazy evaluated as in Stream API, but some of them are not! In most cases it shouldn't be a problem, but for huge sets or performance sensitive use-cases you should be aware of methods you use, especially these based on duplicate() feature.