Skip to main content
Version: Next

src/sydra/codec/rle.zig

Purpose

Placeholder for run-length encoding (RLE) utilities (not yet implemented).

Public API

pub fn encodeBool(writer: anytype, values: []const bool) void

Current implementation is a stub/no-op.

pub fn encodeInt(writer: anytype, values: []const i64) void

Current implementation is a stub/no-op.

Code excerpt

src/sydra/codec/rle.zig
// Run-length encoding stubs for integers and booleans.
pub fn encodeBool(_: anytype, _: []const bool) void {}
pub fn encodeInt(_: anytype, _: []const i64) void {}