8.16.0.4
14 Results
(require scramble/result) | package: scramble-lib |
Added in version 0.3 of package scramble-lib.
This module defines a result type. In general, a result is either ok and carries a success value, or it is bad and carries a value representing failure.
Examples:
> (ok 5) ; (Result Integer) '#s(ok 5)
> (ok (ok 5)) ; (Result (Result Integer)) '#s(ok #s(ok 5))
> (ok 'hello) ; (Result Symbol) '#s(ok hello)
> (ok (list 1 2 3)) ; (Result (Listof Integer)) '#s(ok (1 2 3))
> (ok (bad 123)) ; (Result (Result _ Integer)) '#s(ok #s(bad 123))
Struct type for wrapped OK results.
Struct type for bad results.
procedure
(partition-results rs) →
(listof X) (listof Y) rs : (listof (result/c X Y))
Returns the list of OK values and the list of bad values occurring in
rs. The order of values is preserved.
Example:
> (partition-results (list (ok 1) (bad 2) (ok 3)))
'(1 3)
'(2)