package slice

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module SliceSource

Sourcetype 'buf t = private {
  1. buf : 'buf;
  2. off : int;
  3. len : int;
}
Sourceval unsafe_make : off:int -> len:int -> 'buf -> 'buf t
Sourceval unsafe_sub : 'buf t -> int -> int -> 'buf t
Sourceval pp : Format.formatter -> 'a t -> unit
Sourceval length : 'a t -> int
Sourceval sub : 'a t -> off:int -> len:int -> 'a t
Sourceval shift : 'a t -> int -> 'a t
Sourceval is_empty : 'a t -> bool
Sourcemodule type R = sig ... end
Sourcemodule type W = sig ... end
Sourcemodule type S = sig ... end