Faraday.BEBig endian serializers
val write_uint16 : t -> int -> unitwrite_uint16 t n copies the lower 16 bits of n into the serializer's internal buffer in big-endian byte order.
val write_uint32 : t -> int32 -> unitwrite_uint32 t n copies n into the serializer's internal buffer in big-endian byte order.
val write_uint48 : t -> int64 -> unitwrite_uint48 t n copies the lower 48 bits of n into the serializer's internal buffer in big-endian byte order.
val write_uint64 : t -> int64 -> unitwrite_uint64 t n copies n into the serializer's internal buffer in big-endian byte order.
val write_float : t -> float -> unitwrite_float t n copies the lower 32 bits of n into the serializer's internal buffer in big-endian byte order.
val write_double : t -> float -> unitwrite_double t n copies n into the serializer's internal buffer in big-endian byte order.