1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859(* [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]. *)open!Import0moduleSys=Sys0modulePrimitives=structexternalget:bytes->int->char="%bytes_safe_get"externallength:bytes->int="%bytes_length"externalunsafe_get:bytes->int->char="%bytes_unsafe_get"externalset:bytes->int->char->unit="%bytes_safe_set"externalunsafe_set:bytes->int->char->unit="%bytes_unsafe_set"(* [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]externalunsafe_get_int64:bytes->int->int64="%caml_bytes_get64u"externalunsafe_set_int64:bytes->int->int64->unit="%caml_bytes_set64u"endincludePrimitivesletmax_length=Sys.max_string_lengthletblit=Caml.Bytes.blitletblit_string=Caml.Bytes.blit_stringletcompare=Caml.Bytes.compareletcopy=Caml.Bytes.copyletcreate=Caml.Bytes.createletfill=Caml.Bytes.fillletmake=Caml.Bytes.makeletmap=Caml.Bytes.mapletmapi=Caml.Bytes.mapiletsub=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