package plato

  1. Overview
  2. Docs
type ('elt, 'list) concat =
  1. | ConcatLeft of 'elt -> 'list -> 'list
  2. | ConcatRight of 'list -> 'elt -> 'list
  3. | Set of int -> 'elt -> 'list -> unit
val slice : ?start:int -> ?stop:int -> ?step:int -> ?sub:('a -> int -> int -> 'a0) -> ('a1 -> int) -> ('a2 -> int -> 'b) -> ('b0, 'c) concat -> (int -> 'c0) -> ('c1 -> 'a3) -> 'a4 -> 'a5