Results for “Std.Column.ColumnU64”
16 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Column.ColumnU64
Contiguous unboxed 64-bit columnar vector.
- Std.Column.appendNullU64
&Std.Column.ColumnU64 -> Option[Std.Column.ColumnU64]Appends a null row to the column.
- Std.Column.appendU64
&Std.Column.ColumnU64 -> UInt64 -> Option[Std.Column.ColumnU64]Appends a valid unsigned 64-bit scalar to the column.
- Std.Column.binarySearch
&Std.Column.ColumnU64 -> &Std.Buffer.Buffer -> UInt64 -> Option[Int]Performs an O(log N) binary search over the valid portion of a sorted column.
- Std.Column.createU64
Int -> Std.Column.ColumnU64Allocates an empty 64-bit unsigned integer column with preallocated capacity.
- Std.Column.filterGt
&Std.Column.ColumnU64 -> UInt64 -> Std.Buffer.BufferEvaluates the predicate
(value > threshold)on valid rows, producing a packed selection bitmap buffer. - Std.Column.gather
&Std.Column.ColumnU64 -> &Std.Buffer.Buffer -> Std.Column.ColumnU64Gathers row elements according to a permutation index buffer into a new contiguous unboxed column.
- Std.Column.getU64
&Std.Column.ColumnU64 -> Int -> Option[UInt64]Retrieves the scalar at
row, returningNoneif the row is null or out of bounds. - Std.Column.isNull
&Std.Column.ColumnU64 -> Int -> BoolChecks whether the row at
rowis null or out of bounds. - Std.Column.length
&Std.Column.ColumnU64 -> IntReturns the number of rows stored in the column.
- Std.Column.max
&Std.Column.ColumnU64 -> Option[UInt64]Computes the maximum value among valid non-null elements in the column.
- Std.Column.min
&Std.Column.ColumnU64 -> Option[UInt64]Computes the minimum value among valid non-null elements in the column.
- Std.Column.nullCount
&Std.Column.ColumnU64 -> IntReturns the number of null values in the column.
- Std.Column.project
&Std.Column.ColumnU64 -> &Std.Buffer.Buffer -> Std.Column.ColumnU64Gathers selected rows according to
selectionbitmap into a new contiguous unboxed column. - Std.Column.sortIndices
&Std.Column.ColumnU64 -> Std.Buffer.BufferComputes an unboxed permutation index buffer containing row offsets sorted in ascending order.
- Std.Column.sum
&Std.Column.ColumnU64 -> UInt64Computes the vectorized sum of all valid non-null elements in the column.
