To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
-
travesty
-
-
travesty_containers
-
-
travesty_core_kernel_exts
Library
Module
Module type
Parameter
Class
Class type
Full signature of an arity-0 filter-mappable type.
Functions mapped over arity-0 types must preserve the element type.
include Generic with type 'a t := t and type 'a elt := elt
Generic
strictly extends Generic_basic
.
include Generic_basic with type 'a t := t with type 'a elt := elt
Generic_basic
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 Types_intf.Generic with type 'a t := t with type 'a elt := elt
val filter_map : t -> f:(elt -> elt Base.option) -> t
filter_map c ~f
maps f
over every t
in c
, discarding any items for which f
returns None
.
filter c ~f
checks f
over every t
in c
, discarding any items for which f
returns false
.
exclude c ~f
checks f
over every t
in c
, discarding any items for which f
returns true
.
We can also derive Mappable interfaces from filter-mappable ones, but leave that to a separate functor.