Ducklings API Documentation
    Preparing search index...

    Function tableToIPC

    • Encode an Arrow table into Arrow IPC binary format.

      Parameters

      • table: Table

        The Arrow table to encode.

      • options: { codec?: CompressionType_ | null; format?: "stream" | "file"; sink?: Sink }

        Encoding options.

        • Optionalcodec?: CompressionType_ | null

          Compression codec to apply.

        • Optionalformat?: "stream" | "file"

          Arrow stream or file format.

        • Optionalsink?: Sink

          IPC byte consumer.

      Returns Uint8Array<ArrayBufferLike> | null

      The generated bytes (for an in-memory sink) or null (if using a sink that writes bytes elsewhere).