package tezos-protocol-environment

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Make.MBytesSource

Sourceval create : int -> t
Sourceval length : t -> int
Sourceval copy : t -> t
Sourceval sub : t -> int -> int -> t

sub src ofs len extract a sub-array of src starting at ofs and of length len. No copying of elements is involved: the sub-array and the original array share the same storage space.

Sourceval blit : t -> int -> t -> int -> int -> unit

blit src ofs_src dst ofs_dst len copy len bytes from src starting at ofs_src into dst starting at ofs_dst.

Sourceval blit_of_string : string -> int -> t -> int -> int -> unit

See blit

Sourceval blit_to_bytes : t -> int -> bytes -> int -> int -> unit

See blit

Sourceval of_string : string -> t

of_string s create an byte array filled with the same content than s.

Sourceval to_string : t -> string

to_string b dump the array content in a string.

Sourceval sub_string : t -> int -> int -> string

sub_string b ofs len is equivalent to to_string (sub b ofs len).

Functions reading and writing bytes

Sourceval get_char : t -> int -> char

get_char buff i reads 1 byte at offset i as a char

val get_uint8 : t -> int -> int

get_uint8 buff i reads 1 byte at offset i as an unsigned int of 8 bits. i.e. It returns a value between 0 and 2^8-1

val get_int8 : t -> int -> int

get_int8 buff i reads 1 byte at offset i as a signed int of 8 bits. i.e. It returns a value between -2^7 and 2^7-1

Sourceval set_char : t -> int -> char -> unit

set_char buff i v writes v to buff at offset i

val set_int8 : t -> int -> int -> unit

set_int8 buff i v writes the least significant 8 bits of v to buff at offset i

Functions reading according to Big Endian byte order

val get_uint16 : t -> int -> int

get_uint16 buff i reads 2 bytes at offset i as an unsigned int of 16 bits. i.e. It returns a value between 0 and 2^16-1

val get_int16 : t -> int -> int

get_int16 buff i reads 2 byte at offset i as a signed int of 16 bits. i.e. It returns a value between -2^15 and 2^15-1

val get_int32 : t -> int -> int32

get_int32 buff i reads 4 bytes at offset i as an int32.

val get_int64 : t -> int -> int64

get_int64 buff i reads 8 bytes at offset i as an int64.

val set_int16 : t -> int -> int -> unit

set_int16 buff i v writes the least significant 16 bits of v to buff at offset i

val set_int32 : t -> int -> int32 -> unit

set_int32 buff i v writes v to buff at offset i

val set_int64 : t -> int -> int64 -> unit

set_int64 buff i v writes v to buff at offset i

Sourcemodule LE : sig ... end

Functions reading according to Little Endian byte order

Sourceval (=) : t -> t -> bool
Sourceval (<>) : t -> t -> bool
Sourceval (<) : t -> t -> bool
Sourceval (<=) : t -> t -> bool
Sourceval (>=) : t -> t -> bool
Sourceval (>) : t -> t -> bool
Sourceval compare : t -> t -> int
Sourceval concat : string -> t list -> t
Sourceval to_hex : t -> [ `Hex of string ]
Sourceval of_hex : [ `Hex of string ] -> t
OCaml

Innovation. Community. Security.