Type | Description |
Function or value | Description |
Full Usage:
concatMap f
Parameters:
byte -> ByteString
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
|
|
|
|
|
|
|
|
Full Usage:
enumerate str i
Parameters:
ByteString
i : Iteratee<ByteString, 'a>
Returns: Iteratee<ByteString, 'a>
|
|
Full Usage:
enumeratePure1Chunk str i
Parameters:
ByteString
i : Iteratee<ByteString, 'a>
Returns: Iteratee<ByteString, 'a>
|
|
Full Usage:
enumeratePureNChunk n str i
Parameters:
int
str : ByteString
i : Iteratee<ByteString, 'a>
Returns: Iteratee<ByteString, 'a>
|
|
Full Usage:
filter p
Parameters:
byte -> bool
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
Full Usage:
fold step seed
Parameters:
'a -> byte -> 'a
seed : 'a
Returns: Iteratee<ByteString, 'a>
|
|
|
|
|
|
Full Usage:
isolate n _arg1
Parameters:
int
_arg1 : Iteratee<ByteString, 'a>
Returns: Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
Full Usage:
isolateUntil pred
Parameters:
byte -> bool
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
Full Usage:
isolateWhile pred
Parameters:
byte -> bool
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
|
|
|
|
Full Usage:
map f
Parameters:
byte -> byte
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, Iteratee<ByteString, 'a>>
|
|
|
|
|
|
|
|
Full Usage:
repeat a
Parameters:
byte
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, 'a>
|
|
Full Usage:
replicate maxCount getNext
Parameters:
int
getNext : byte
Returns: Iteratee<ByteString, 'a> -> Iteratee<ByteString, 'a>
|
|
|
|
|
|
Full Usage:
takeUntil pred
Parameters:
byte -> bool
Returns: Iteratee<ByteString, ByteString>
|
|
Full Usage:
takeWhile pred
Parameters:
byte -> bool
Returns: Iteratee<ByteString, ByteString>
|
|