type nonrec ('src, 'dst) blit = ('src, 'dst) blittype nonrec ('src, 'dst) blito = ('src, 'dst) blitotype nonrec ('src, 'dst) sub = ('src, 'dst) subtype nonrec ('src, 'dst) subo = ('src, 'dst) subo
module Make : functor (Sequence : sig ... end) -> S with type t := Sequence.tMake is for blitting between two values of the same monomorphic type.
module Make_distinct : functor (Src : Sequence) -> functor (Dst : sig ... end) -> S_distinct with type src := Src.t with type dst := Dst.tMake_distinct is for blitting between values of distinct monomorphic types.
module Make1 : functor (Sequence : Sequence1) -> S1 with type 'a t := 'a Sequence.tMake1 is for blitting between two values of the same polymorphic type.
module Make1_generic : functor (Sequence : Sequence1) -> S1 with type 'a t := 'a Sequence.tMake1_generic is for blitting between two values of the same container type that's not fully polymorphic (in the sense of Container.Generic).