Header menu logo Deedle

ISeries<'K> Type

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 member Description

this.Index

Full Usage: this.Index

Returns: IIndex<'K>
Modifiers: abstract

Returns the index containing keys of the series

Returns: IIndex<'K>

this.TryGetObject

Full Usage: this.TryGetObject

Parameters:
    arg0 : 'K

Returns: OptionalValue<obj>
Modifiers: abstract

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

arg0 : 'K
Returns: OptionalValue<obj>

this.Vector

Full Usage: this.Vector

Returns: IVector
Modifiers: abstract

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

Returns: IVector

this.VectorBuilder

Full Usage: this.VectorBuilder

Returns: IVectorBuilder
Modifiers: abstract

Returns the vector builder associated with this series

Returns: IVectorBuilder

Type something to start searching.