You can search for identifiers within the package.
in-package search v0.2.0
podge
Podge.List
val all : f:('a -> bool) -> 'a list -> bool
Evaluate f on each item of the given list and check if all evaluated to true
val any : f:('a -> bool) -> 'a list -> bool
Evaluate f on each item of the given list and check if any evaluated to false
val unique : 'a list -> 'a list
val group_by : ('a * 'b) list -> ('a * 'b list) list
val take : int -> 'a list -> 'a list
val drop : int -> 'a list -> 'a list
val equal_parts : segs:int -> 'a list -> 'a list list