module Manual:sig..end
Manual sources and destinations.
Warning. Use only with `Manual decoder and encoders.
val src : Uutf.decoder -> Stdlib.Bytes.t -> int -> int -> unitsrc d s j l provides d with l bytes to read, starting at
j in s. This byte range is read by calls to val-decode with d
until `Await is returned. To signal the end of input call the function
with l = 0.
val dst : Uutf.encoder -> Stdlib.Bytes.t -> int -> int -> unitdst e s j l provides e with l bytes to write, starting
at j in s. This byte range is written by calls to
val-encode with e until `Partial is returned. Use Uutf.Manual.dst_rem to
know the remaining number of non-written free bytes in s.
val dst_rem : Uutf.encoder -> intdst_rem e is the remaining number of non-written, free bytes
in the last buffer provided with Uutf.Manual.dst.