package tensorboard

  1. Overview
  2. Docs
No synopsis

Install

Dune Dependency

Authors

Maintainers

Sources

0.0.1.tar.gz
md5=91035b4a9827fdf6e2fb61d0edb1bb2c
sha512=7f09994c0bb844429b795b971ae3bacd927eae4854a4efc36dbf8d6f4ea24e7f05f754f7191747e32b4fef1922589d1db8d2622147a1706efe7e79201329400b

doc/tensorboard.protobuf/Tensorboard_protobuf/Protobuf/Encoder/index.html

Module Protobuf.EncoderSource

Sourcetype error =
  1. | Overflow of string

Type of failures possible while encoding.

Sourceval error_to_string : error -> string

error_to_string e converts error e to its string representation.

Sourceexception Failure of error
Sourcetype t

Type of wire format encoders.

Sourceval create : unit -> t

create () creates a new encoder.

Sourceval to_string : t -> string

to_string e converts the message assembled in e to a string.

Sourceval to_bytes : t -> bytes

to_bytes e converts the message assembled in e to bytes.

Sourceval varint : int64 -> t -> unit

varint i e writes a varint i to e.

Sourceval zigzag : int64 -> t -> unit

zigzag i e zigzag-encodes a varint i and writes it to e.

Sourceval bits32 : int32 -> t -> unit

bits32 i e writes four bytes of i to e.

Sourceval bits64 : int64 -> t -> unit

bits64 i e writes eight bytes of i to e.

Sourceval bytes : bytes -> t -> unit

bytes b e writes a varint indicating length of b and then b to e.

Sourceval nested : (t -> unit) -> t -> unit

nested f e applies f to an encoder for a message nested in e.

Sourceval key : (int * payload_kind) -> t -> unit

key (k, pk) e writes a key and a payload kind to e.

Sourceval encode_exn : ('a -> t -> unit) -> 'a -> bytes

encode_exn f xlet e = create () in f x e; to_bytes f.

Sourceval encode : ('a -> t -> unit) -> 'a -> bytes option

encode f xtry Some (encode_exn f x) with Failure _ -> None.

Sourceval int32_of_int : string -> int -> int32

int32_of_int fld v returns v truncated to int32. If the value doesn't fit in the range of int32, raises Failure (Overflow fld).

Sourceval int32_of_int64 : string -> int64 -> int32

int32_of_int64 fld v returns v truncated to int32. If the value doesn't fit in the range of int32, raises Failure (Overflow fld).

OCaml

Innovation. Community. Security.