SeriesBuilder<'K, 'V> Type
The type can be used for creating series using mutation. You can add
items using `Add` and get the resulting series using the Series property.
Using from C#:
The type supports the C# collection builder pattern:
var s = new SeriesBuilder<string, double>
{ { "A", 1.0 }, { "B", 2.0 }, { "C", 3.0 } }.Series;
The type also supports the `dynamic` operator:
dynamic sb = new SeriesBuilder<string, obj>();
sb.ID = 1;
sb.Value = 3.4;
Constructors
| Constructor |
Description
|
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.Add
Parameters:
'K
value : 'V
|
Add specified key and value to the series being build
|
|
Returns the constructed series. The series is an immutable copy of the current values and so further additions will not change the returned series.
|
Static members
| Static member |
Description
|
Full Usage:
(?<-) (builder, name, value)
Parameters:
SeriesBuilder<string, 'V>
name : string
value : 'V
|
|
Deedle