| IVectorLocation Interface |
Represents a location in a vector. In general, we always know the address, but
sometimes (BigDeedle) it is hard to get the offset (requires some data lookups),
so we use this interface to delay the calculation of the Offset (which is mainly
needed in one of the `series.Select` overloads)
[category:Vectors and indices]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public interface IVectorLocation
The IVectorLocation type exposes the following members.
Properties
| Name | Description |
---|
| Address |
Returns the address of the location (this should be immediate)
|
| Offset |
Returns the offset of the location (this may involve some calculation)
|
TopSee Also