Module Test_error.Set

type nonrec 'error t = {
soft_errors : 'error Error_accumulator.t;
hard_errors : 'error Error_accumulator.t;
exit_code : int option;
}
val empty : 'a t
val max_severity : 'a t -> [> `Hard | `None | `Soft ]
val all_errors : 'a t -> 'b Error_accumulator.t
val soft_singleton : 'a -> 'b t
val hard_singleton : ?exit_code:int -> 'a -> 'b t
val of_soft_or_error : ( unit, Core.Error.t ) Core._result -> internal_error t
val of_hard_or_error : ?exit_code:int -> ( unit, Core.Error.t ) Core._result -> internal_error t
val add_soft : 'a -> 'b t -> 'c t
val add_hard : ?exit_code:int -> 'a -> 'b t -> 'c t
val merge : 'a t -> 'b t -> 'c t
val combine : 'a t list -> 'b t
val partition : 'a t -> f:( 'b -> bool ) -> 'c t * 'd t