Index
Namespace: Deedle
Type that provides access to creating indices (represented as LinearIndex
values)
Static members
Static member | Description |
Index.Create(keys)
Signature: keys:seq<'T> -> IIndex<'T>
Type parameters: 'T
Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]
|
Create an index from a sequence of keys and check if they are sorted or not
|
Index.CreateUnordered(keys)
Signature: keys:seq<'T> -> IIndex<'T>
Type parameters: 'T
Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]
|
Create an index from a sequence of keys and assume they are not sorted
(the resulting index is also not sorted).
|