Results for “Std.Column.ColumnF64”
18 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Column.ColumnF64
Contiguous unboxed 64-bit floating-point columnar vector.
- Std.Column.addF64
&Std.Column.ColumnF64 -> &Std.Column.ColumnF64 -> Option[Std.Column.ColumnF64]Vectorized element-wise addition of two float columns.
- Std.Column.appendF64
&Std.Column.ColumnF64 -> Float64 -> Option[Std.Column.ColumnF64]Appends a valid 64-bit float scalar to the column.
- Std.Column.appendNullF64
&Std.Column.ColumnF64 -> Option[Std.Column.ColumnF64]Appends a null row to the float column.
- Std.Column.binarySearchF64
&Std.Column.ColumnF64 -> &Std.Buffer.Buffer -> Float64 -> Option[Int]Performs an O(log N) binary search over the valid portion of a sorted float column.
- Std.Column.createF64
Int -> Std.Column.ColumnF64Allocates an empty 64-bit float column with preallocated capacity.
- Std.Column.filterGtF64
&Std.Column.ColumnF64 -> Float64 -> Std.Buffer.BufferEvaluates the predicate
(value > threshold)on valid float rows, producing a packed selection bitmap buffer. - Std.Column.filterLtF64
&Std.Column.ColumnF64 -> Float64 -> Std.Buffer.BufferEvaluates the predicate
(value < threshold)on valid float rows, producing a packed selection bitmap buffer. - Std.Column.gatherF64
&Std.Column.ColumnF64 -> &Std.Buffer.Buffer -> Std.Column.ColumnF64Gathers float row elements according to a permutation index buffer into a new contiguous unboxed column.
- Std.Column.getF64
&Std.Column.ColumnF64 -> Int -> Option[Float64]Retrieves the float scalar at
row, returningNoneif the row is null or out of bounds. - Std.Column.isNullF64
&Std.Column.ColumnF64 -> Int -> BoolChecks whether the float row at
rowis null or out of bounds. - Std.Column.lengthF64
&Std.Column.ColumnF64 -> IntReturns the number of rows stored in the float column.
- Std.Column.maxF64
&Std.Column.ColumnF64 -> Option[Float64]Computes the maximum value among valid non-null elements in the float column.
- Std.Column.minF64
&Std.Column.ColumnF64 -> Option[Float64]Computes the minimum value among valid non-null elements in the float column.
- Std.Column.nullCountF64
&Std.Column.ColumnF64 -> IntReturns the number of null values in the float column.
- Std.Column.projectF64
&Std.Column.ColumnF64 -> &Std.Buffer.Buffer -> Std.Column.ColumnF64Gathers selected float rows according to
selectionbitmap into a new contiguous unboxed column. - Std.Column.sortIndicesF64
&Std.Column.ColumnF64 -> Std.Buffer.BufferComputes an unboxed permutation index buffer for float rows sorted in ascending order (ASC NULLS LAST).
- Std.Column.sumF64
&Std.Column.ColumnF64 -> Float64Computes the vectorized sum of all valid non-null elements in the float column.
