mte/unikernel/duniverse/result/result-as-alias.ml
2025-11-11 02:07:51 +01:00

2 lines
105 B
Standard ML
Executable file

type nonrec ('a, 'b) result = ('a, 'b) result = Ok of 'a | Error of 'b
type ('a, 'b) t = ('a, 'b) result