Bare_structs.Seq_esSourceinclude Bare_sigs.Seq_es.S
with type ('a, 'e) seq_e_t := ('a, 'e) Seq_e.t
and type 'a seq_s_t := 'a Seq_s.tThis is similar to Seq.S.t but the suspended node is a promised result.
Similarly to Seq_e, sequences of this module can be interrupted by an error. In this case, traversal has fully applied to the successful prefix before the returned promise evaluates to Error _.
val fold_left_e :
('a -> 'b -> ('a, 'e) Stdlib.result) ->
'a ->
('b, 'e) t ->
('a, 'e) Stdlib.result Lwt.tSee Seq_e.fold_left_e for a warning about traversal and interruption errors being indistinguishable. This applies to all _e and _es functions of this module.