MutableSeriesBuilder
Value members
Concrete methods
Creates an mutable Series of length length with the given value.
Creates an mutable Series of length length with the given value.
- Value Params
- length
Length of the Series.
- value
Value for all elements.
- Returns
New MutableSeries.
- Since
0.1.0
Creates a mutable Series from a collection of data.
Creates a mutable Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created MutableSeries.
- Since
0.1.0
Creates a mutable Series from a collection of data.
Creates a mutable Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created MutableSeries.
- Since
0.1.0
Creates a mutable Series from a collection of data.
Creates a mutable Series from a collection of data.
- Value Params
- data
Collection.
- Returns
Created MutableSeries.
- Since
0.1.0
Creates a mutable Series from a collection of Option data, where the Option is unpacked.
Creates a mutable Series from a collection of Option data, where the Option is unpacked.
- Value Params
- data
Collection of type
Option[T].
- Returns
Created MutableSeries of type
T.- Since
0.1.0
Creates a mutable Series from a collection of Option data, where the Option is unpacked.
Creates a mutable Series from a collection of Option data, where the Option is unpacked.
- Value Params
- data
Collection of type
Option[T].
- Returns
Created MutableSeries of type
T.- Since
0.1.0
String representation.
String representation.
- Returns
"MutableSeriesBuilder" with name of Series.
- Since
0.1.0
- Definition Classes
- Any
Wraps the array into a mutable Series without copying.
Wraps the array into a mutable Series without copying.
Warning: Ensure that the array is not used after wrapping. Otherwise no guarantees can be given with regards to correct functionality, null safety, etc.
- Value Params
- array
Array to be wrapped by a mutable Series.
- Returns
- Since
0.1.0
- Note
Arrays with reference types are checked for null values and masked if required.