package capnp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. offset : int;
    (*

    Signed offset in words from end of the pointer to start of struct data region.

    *)
  2. data_words : int;
    (*

    Size of struct data region, in words.

    *)
  3. pointer_words : int;
    (*

    Size of struct pointers region, in words.

    *)
}
val tag_val_struct : int64
val offset_shift : int
val offset_mask : int64
val offset_mask_int : int
val data_size_shift : int
val data_size_mask : int64
val data_size_mask_int : int
val pointers_size_shift : int
val decode : Stdlib.Int64.t -> t
val encode : t -> Stdlib.Int64.t