package travesty

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

Mapping over the right type. of an arity-0 bi-mappable container.

Parameters

Signature

include Generic_types.S0 with type t = S.t with type elt = S.right
type t = S.t

The container type.

type elt = S.right

The element type.

include Mappable_types.Generic with type 'a t := t and type 'a elt := elt

Generic refers to the container type as 'a t, and the element type as 'a elt; substitute t/elt (arity-0) or 'a t/'a (arity-1) accordingly below.

include Generic_types.Generic with type 'a t := t with type 'a elt := elt
val map : t -> f:(elt -> elt) -> t

map c ~f maps f over every t in c.