|
| Length of currently available data.
|
|
|
| Test if the current stream is null.
|
|
| cons :: el -> c el -> c el | Source |
|
| Prepend an element to the front of the data.
|
|
|
| Return the first element of the stream.
|
|
|
| Return the tail of the stream.
|
|
|
| First index matching the predicate.
|
|
|
| Split the data at the specified index.
|
|
|
| Drop data matching the predicate.
|
|
| fromList :: [el] -> c el | Source |
|
| Create a stream from a list.
|
|
|
| Create a list from the stream.
|
|
|
| Map a computation over the stream.
|