SeriesBuilder<'K, 'V>
Namespace: Deedle
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:
1: 2: |
|
The type also supports the dynamic
operator:
1: 2: 3: |
|
Multiple items
val string : value:'T -> string
Full name: Microsoft.FSharp.Core.Operators.string
--------------------
type string = System.String
Full name: Microsoft.FSharp.Core.string
val string : value:'T -> string
Full name: Microsoft.FSharp.Core.Operators.string
--------------------
type string = System.String
Full name: Microsoft.FSharp.Core.string
Multiple items
val double : value:'T -> float (requires member op_Explicit)
Full name: Microsoft.FSharp.Core.ExtraTopLevelOperators.double
--------------------
type double = System.Double
Full name: Microsoft.FSharp.Core.double
val double : value:'T -> float (requires member op_Explicit)
Full name: Microsoft.FSharp.Core.ExtraTopLevelOperators.double
--------------------
type double = System.Double
Full name: Microsoft.FSharp.Core.double
type obj = System.Object
Full name: Microsoft.FSharp.Core.obj
Full name: Microsoft.FSharp.Core.obj
Constructors
Constructor | Description |
new()
Signature: unit -> SeriesBuilder<'K,'V>
|
Instance members
Static members
Static member | Description |
( ?<- )(builder, name, value)
Signature: (builder:SeriesBuilder<string,'V> * name:string * value:'V) -> unit
|