Module IStdlib.RevList
val empty : 'a tReturn empty list
val to_list : 'a t -> 'a listReturn normal-ordered list
val of_list : 'a list -> 'a tMake reverse-ordered list from normal-ordered one
val exists : 'a t -> f:('a -> bool) -> boolSimilar to
List.exists
val rev_map : 'a t -> f:('a -> 'b) -> 'b listSimilar to
List.rev_map, so return normal-ordered list
val rev_map_append : 'a t -> 'b list -> f:('a -> 'b) -> 'b listSimilar to
List.rev_map_append
val rev_partition_map : 'a t -> f:('a -> ('b, 'c) IStdlib.IStd.Either.t) -> 'b list * 'c listSimilar to
List.partition_map, but return normal-ordered lists