Function or value | Description |
|
append uses Buffer.BlockCopy for efficient array operations. Please note that a new array is created and both arrays are copied in, disregarding any additional bytes in the original, underlying arrays.
|
|
cons uses Buffer.SetByte and Buffer.BlockCopy for efficient array operations. Please note that a new array is created and both the head and tail are copied in, disregarding any additional bytes in the original tail array.
|
|
|
|
|
Full Usage:
ByteString.findIndex pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: int
|
|
Full Usage:
ByteString.fold f seed bs
Parameters:
'a -> byte -> 'a
seed : 'a
bs : ByteString
Returns: 'a
|
|
|
|
|
|
|
|
|
|
Full Usage:
ByteString.ofArraySegment segment
Parameters:
ArraySegment<byte>
Returns: ByteString
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
ByteString.skipUntil pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString
|
|
Full Usage:
ByteString.skipWhile pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString
|
|
Full Usage:
ByteString.span pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString * ByteString
|
|
Full Usage:
ByteString.split pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString * ByteString
|
|
Full Usage:
ByteString.splitAt n bs
Parameters:
int
bs : ByteString
Returns: ByteString * ByteString
|
|
|
|
|
|
Full Usage:
ByteString.takeUntil pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString
|
|
Full Usage:
ByteString.takeWhile pred bs
Parameters:
byte -> bool
bs : ByteString
Returns: ByteString
|
|
|
|
|
|
|
|
|
|
Active pattern | Description |
|
|