include EndianStringSig
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
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
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
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
get_float buff i
is equivalent to Int32.float_of_bits (get_int32 buff i)
get_double buff i
is equivalent to Int64.float_of_bits (get_int64 buff i)
val set_char : Stdlib.Bytes.t -> int -> char -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_char.
val set_int8 : Stdlib.Bytes.t -> int -> int -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_int8.
val set_int16 : Stdlib.Bytes.t -> int -> int -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_int16.
val set_int32 : Stdlib.Bytes.t -> int -> int32 -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_int32.
val set_int64 : Stdlib.Bytes.t -> int -> int64 -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_int64.
val set_float : Stdlib.Bytes.t -> int -> float -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_float.
val set_double : Stdlib.Bytes.t -> int -> float -> unit
- deprecated
This is a deprecated alias of
endianBytes
.set_double.