= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
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
Generic input shape of filter-mappable structures on either an arity-0 or arity-1 type.
- For arity-0 types, use Basic0:
'a t
becomest
, and'a elt
becomeselt
; - For arity-1 types, use Basic1:
'a t
becomes'a t
, and'a elt
becomes'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
val filter_map : 'a t -> f:('a elt -> 'b elt Base.option) -> 'b t
filter_map c ~f
maps f
over every t
in c
, discarding any items for which f
returns None
.