IReadable<'T, 'Slice> Type
A type that can be read from, representing the input to a parser. Implement this interface to create your own input types. Use the Reader module for common input types like string, array, etc.
Instance members
Instance member | Description |
Full Usage:
this[arg1]
Parameters:
int64
Returns: 'T
Modifiers: abstract |
|
Full Usage:
this.Length
Returns: int64
Modifiers: abstract |
|
Full Usage:
this.Slice
Parameters:
int64
newLength : int64
Returns: 'Slice
Modifiers: abstract |
|
Full Usage:
this.SpanSlice
Parameters:
int64
length : int
Returns: ReadOnlySpan<'T>
Modifiers: abstract |
|
Full Usage:
this.TryItem
Parameters:
int64
Returns: 'T voption
Modifiers: abstract |
|