12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061(* [Bytes0] defines string functions that are primitives or can be simply
defined in terms of [Caml.Bytes]. [Bytes0] is intended to completely express
the part of [Caml.Bytes] that [Base] uses -- no other file in Base other
than bytes0.ml should use [Caml.Bytes]. [Bytes0] has few dependencies, and
so is available early in Base's build order.
All Base files that need to use strings and come before [Base.Bytes] in
build order should do:
{[
module Bytes = Bytes0
]}
Defining [module Bytes = Bytes0] is also necessary because it prevents
ocamldep from mistakenly causing a file to depend on [Base.Bytes]. *)letblit_string=Caml.Bytes.blit_stringletsub_stringt~pos~len=Caml.Bytes.sub_stringtposlenopen!Import0moduleSys=Sys0modulePrimitives=structexternalget:bytes->int->char="%bytes_safe_get"externallength:bytes->int="%bytes_length"externalunsafe_get:bytes->int->char="%bytes_unsafe_get"includeBytes_set_primitives(* [unsafe_blit_string] is not exported in the [stdlib] so we export it here *)externalunsafe_blit_string:src:string->src_pos:int->dst:bytes->dst_pos:int->len:int->unit="caml_blit_string"[@@noalloc]endincludePrimitivesletmax_length=Sys.max_string_lengthletblit=Caml.Bytes.blitletcompare=Caml.Bytes.compareletcopy=Caml.Bytes.copyletcreate=Caml.Bytes.createletfill=Caml.Bytes.fillletmake=Caml.Bytes.makeletsub=Caml.Bytes.subletunsafe_blit=Caml.Bytes.unsafe_blitletto_string=Caml.Bytes.to_stringletof_string=Caml.Bytes.of_stringletunsafe_to_string~no_mutation_while_string_reachable:s=Caml.Bytes.unsafe_to_stringsletunsafe_of_string_promise_no_mutation=Caml.Bytes.unsafe_of_string(* These are eta expanded in order to label arguments, following the
Base conventions. *)letblit_string~src~src_pos~dst~dst_pos~len=blit_stringsrcsrc_posdstdst_poslen