Index Type
Type that provides a simple access to creating indices represented using the built-in `LinearVector` type.
Static members
| Static member |
Description
|
Full Usage:
Index.ofKeys keys
Parameters:
'T list
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and check if they are sorted or not
|
Full Usage:
Index.ofKeys keys
Parameters:
'T[]
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and check if they are sorted or not
|
Full Usage:
Index.ofKeys keys
Parameters:
ReadOnlyCollection<'T>
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and check if they are sorted or not
|
Full Usage:
Index.ofUnorderedKeys keys
Parameters:
'T list
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).
|
Full Usage:
Index.ofUnorderedKeys keys
Parameters:
'T[]
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).
|
Full Usage:
Index.ofUnorderedKeys keys
Parameters:
ReadOnlyCollection<'T>
Returns: IIndex<'T>
Type parameters: 'T (requires equality) |
Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).
|
Deedle