Click or drag to resize
ISeriesK Interface
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). [category:Core frame and series types]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public interface ISeries<K>

Type Parameters

K

The ISeriesK type exposes the following members.

Properties
  NameDescription
Public propertyIndex
Returns the index containing keys of the series
Public propertyVector
Returns the vector containing data of the series (as an untyped vector)
Public propertyVectorBuilder
Returns the vector builder associated with this series
Top
Methods
  NameDescription
Public methodTryGetObject
Attempts to get the value at a specified key and return it as `obj`
Top
See Also