Module Async_or_error.List

module List: Deferred_intf.Monad_sequence 
  with type 'a monad := 'a t 
  with type 'a t := 'a list

type 'a monad 
type 'a t 
val foldi : 'a t ->
init:'b ->
f:(int -> 'b -> 'a -> 'b monad) ->
'b monad
val fold : 'a t ->
init:'b ->
f:('b -> 'a -> 'b monad) ->
'b monad
val init : ?how:Deferred_intf.how ->
int ->
f:(int -> 'a monad) ->
'a t monad
val iter : ?how:Deferred_intf.how ->
'a t ->
f:('a -> unit monad) ->
unit monad
val iteri : ?how:Deferred_intf.how ->
'a t ->
f:(int -> 'a -> unit monad) ->
unit monad
val map : ?how:Deferred_intf.how ->
'a t ->
f:('a -> 'b monad) ->
'b t monad
val filter : ?how:Deferred_intf.how ->
'a t ->
f:('a -> bool monad) ->
'a t monad
val filter_map : ?how:Deferred_intf.how ->
'a t ->
f:('a -> 'b option monad) ->
'b t monad
val all : 'a monad t ->
'a t monad
val all_unit : unit monad t ->
unit monad