mte/unikernel/duniverse/result/result-as-alias.ml

3 lines
105 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
type nonrec ('a, 'b) result = ('a, 'b) result = Ok of 'a | Error of 'b
type ('a, 'b) t = ('a, 'b) result