Deedle


ISeries<'K>

Namespace: Deedle

Represents an untyped series with keys of type K and values of some unknown type (This type should not generally be used directly, but it can be used when you need to write code that works on a sequence of series of heterogeneous types).

Instance members

Instance memberDescription
x.Index
Signature: IIndex<'K>
Modifiers: abstract

Returns the index containing keys of the series

CompiledName: get_Index

x.TryGetObject(arg1)
Signature: 'K -> OptionalValue<obj>
Modifiers: abstract

Attempts to get the value at a specified key and return it as obj

x.Vector
Signature: IVector
Modifiers: abstract

Returns the vector containing data of the series (as an untyped vector)

CompiledName: get_Vector

x.VectorBuilder
Signature: IVectorBuilder
Modifiers: abstract

Returns the vector builder associated with this series

CompiledName: get_VectorBuilder

Fork me on GitHub