Add mli for bytes

Signed-off-by: Rudi Grinberg <rudi.grinberg@gmail.com>
This commit is contained in:
Rudi Grinberg 2018-08-22 14:12:53 +03:00
parent b9dada554e
commit 214131b27d
1 changed files with 9 additions and 0 deletions

9
src/stdune/bytes.mli Normal file
View File

@ -0,0 +1,9 @@
include module type of StdLabels.Bytes with type t = StdLabels.Bytes.t
val blit_string
: src:string
-> src_pos:int
-> dst:t
-> dst_pos:int
-> len:int
-> unit