package
0.1.158
Repository: https://github.com/searking/golang.git
Documentation: pkg.go.dev

# Functions

AllMatchFunc returns whether all elements of this stream match the provided predicate.
AnyMatchFunc returns whether any elements of this stream match the provided predicate.
ConcatFunc creates a lazily concatenated stream whose elements are all the elements of the first stream followed by all the elements of the second stream.
CountFunc returns the maximum element of this stream according to the provided.
DistinctFunc returns a slice consisting of the distinct elements (according to {@link Object#equals(Object)}) of this slice.
DropUntilFunc returns, if this slice is ordered, a slice consisting of the remaining elements of this slice after dropping the longest prefix of elements that match the given predicate.
DropWhileFunc returns, if this slice is ordered, a slice consisting of the remaining elements of this slice after dropping the longest prefix of elements that match the given predicate.
EmptyFunc returns an empty sequential {@code slice}.
FilterFunc returns a slice consisting of the elements of this slice that match the given predicate.
FindAnyFunc returns an {@link Optional} describing some element of the stream, or an empty {@code Optional} if the stream is empty.
FindAnyFunc returns an {@link interface{}} describing some element of the stream, or an empty {@code Optional} if the stream is empty.
FindFirstFunc returns an {@link Optional} describing the first element of this stream, or an empty {@code Optional} if the stream is empty.
FindFirstFunc returns an {@link Optional} describing the first index of this stream, or an empty {@code Optional} if the stream is empty.
ForEachFunc Performs an action for each element of this slice.
ForEachOrderedFunc Performs an action for each element of this slice.
LimitFunc Returns a slice consisting of the elements of this slice, truncated to be no longer than {@code maxSize} in length.
MapFunc returns a slice consisting of the results of applying the given function to the elements of this slice.
MaxFunc returns the maximum element of this stream according to the provided.
MinFunc returns the minimum element of this stream according to the provided.
No description provided by the author
NoneMatchFunc returns whether no elements of this stream match the provided predicate.
Of returns a slice consisting of the elements.
PeekFunc returns a slice consisting of the elements of this slice, additionally performing the provided action on each element as elements are consumed from the resulting slice.
ReduceFunc calls a defined callback function on each element of an array, and returns an array that contains the results.
SkipFunc returns a slice consisting of the remaining elements of this slice after discarding the first {@code n} elements of the slice.
SortedFunc returns a slice consisting of the distinct elements (according to {@link Object#equals(Object)}) of this slice.
TakeUntilFunc returns, if this slice is ordered, a slice consisting of the longest prefix of elements taken from this slice that unmatch the given predicate.
TakeWhileFunc returns, if this slice is ordered, a slice consisting of the longest prefix of elements taken from this slice that match the given predicate.
ToSliceFunc returns an array containing the elements of this stream.

# Structs

No description provided by the author
No description provided by the author