include module type of Stdlib.Bytes
val length : bytes -> intval get : bytes -> int -> charval set : bytes -> int -> char -> unitval create : int -> bytesval make : int -> char -> bytesval init : int -> (int -> char) -> bytesval copy : bytes -> bytesval of_string : string -> bytesval to_string : bytes -> stringval sub : bytes -> int -> int -> bytesval sub_string : bytes -> int -> int -> stringval extend : bytes -> int -> int -> bytesval fill : bytes -> int -> int -> char -> unitval blit : bytes -> int -> bytes -> int -> int -> unitval blit_string : string -> int -> bytes -> int -> int -> unitval concat : bytes -> bytes list -> bytesval cat : bytes -> bytes -> bytesval iter : (char -> unit) -> bytes -> unitval iteri : (int -> char -> unit) -> bytes -> unitval map : (char -> char) -> bytes -> bytesval mapi : (int -> char -> char) -> bytes -> bytesval fold_left : ('acc -> char -> 'acc) -> 'acc -> bytes -> 'accval fold_right : (char -> 'acc -> 'acc) -> bytes -> 'acc -> 'accval for_all : (char -> bool) -> bytes -> boolval exists : (char -> bool) -> bytes -> boolval trim : bytes -> bytesval escaped : bytes -> bytesval index : bytes -> char -> intval index_opt : bytes -> char -> int optionval rindex : bytes -> char -> intval rindex_opt : bytes -> char -> int optionval index_from : bytes -> int -> char -> intval index_from_opt : bytes -> int -> char -> int optionval rindex_from : bytes -> int -> char -> intval rindex_from_opt : bytes -> int -> char -> int optionval contains : bytes -> char -> boolval contains_from : bytes -> int -> char -> boolval rcontains_from : bytes -> int -> char -> boolval uppercase_ascii : bytes -> bytesval lowercase_ascii : bytes -> bytesval capitalize_ascii : bytes -> bytesval uncapitalize_ascii : bytes -> bytesval compare : t -> t -> intval equal : t -> t -> boolval starts_with : prefix:bytes -> bytes -> boolval ends_with : suffix:bytes -> bytes -> boolval unsafe_to_string : bytes -> stringval unsafe_of_string : string -> bytesval split_on_char : char -> bytes -> bytes listval to_seq : t -> char Stdlib.Seq.tval to_seqi : t -> (int * char) Stdlib.Seq.tval of_seq : char Stdlib.Seq.t -> tval get_utf_8_uchar : t -> int -> Stdlib.Uchar.utf_decodeval set_utf_8_uchar : t -> int -> Stdlib.Uchar.t -> intval is_valid_utf_8 : t -> boolval get_utf_16be_uchar : t -> int -> Stdlib.Uchar.utf_decodeval set_utf_16be_uchar : t -> int -> Stdlib.Uchar.t -> intval is_valid_utf_16be : t -> boolval get_utf_16le_uchar : t -> int -> Stdlib.Uchar.utf_decodeval set_utf_16le_uchar : t -> int -> Stdlib.Uchar.t -> intval is_valid_utf_16le : t -> boolval get_uint8 : bytes -> int -> intval get_int8 : bytes -> int -> intval get_uint16_ne : bytes -> int -> intval get_uint16_be : bytes -> int -> intval get_uint16_le : bytes -> int -> intval get_int16_ne : bytes -> int -> intval get_int16_be : bytes -> int -> intval get_int16_le : bytes -> int -> intval get_int32_ne : bytes -> int -> int32val get_int32_be : bytes -> int -> int32val get_int32_le : bytes -> int -> int32val get_int64_ne : bytes -> int -> int64val get_int64_be : bytes -> int -> int64val get_int64_le : bytes -> int -> int64val set_uint8 : bytes -> int -> int -> unitval set_int8 : bytes -> int -> int -> unitval set_uint16_ne : bytes -> int -> int -> unitval set_uint16_be : bytes -> int -> int -> unitval set_uint16_le : bytes -> int -> int -> unitval set_int16_ne : bytes -> int -> int -> unitval set_int16_be : bytes -> int -> int -> unitval set_int16_le : bytes -> int -> int -> unitval set_int32_ne : bytes -> int -> int32 -> unitval set_int32_be : bytes -> int -> int32 -> unitval set_int32_le : bytes -> int -> int32 -> unitval set_int64_ne : bytes -> int -> int64 -> unitval set_int64_be : bytes -> int -> int64 -> unitval set_int64_le : bytes -> int -> int64 -> unitval unsafe_get : bytes -> int -> charval unsafe_set : bytes -> int -> char -> unitval unsafe_blit : bytes -> int -> bytes -> int -> int -> unitval unsafe_blit_string : string -> int -> bytes -> int -> int -> unitval unsafe_fill : bytes -> int -> int -> char -> unitval unsafe_escape : bytes -> bytes