= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package travesty
-
travesty
-
-
travesty.containers
-
-
travesty.core_kernel_exts
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Make0
makes an S1 from a Basic1.
Parameters
Signature
include Generic with type 'a t := 'a F.t and type 'a elt := 'a
Generic
strictly extends Generic_basic
.
include Generic_basic with type 'a t := 'a F.t with type 'a elt := 'a
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 := 'a F.t with type 'a elt := 'a
val filter_map : 'a F.t -> f:('a -> 'b Base.option) -> 'b F.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.
ON THIS PAGE