Chooses and executes a function for each variant in the Result structure.
This API is still experimental, so it may change or be removed in future versions. You should not rely on it for production applications.
('a is Variant).({ 'b: (Object Any) => 'c }) => 'c
where 'b = 'a[`@@folktale:adt:tag]
Chooses and executes a function for each variant in the Result structure.
const Result = require('folktale/result');
Result.Ok(1).matchWith({
Ok: ({ value }) => `ok ${value}`,
Error: ({ value }) => `error ${value}`
});
// ==> 'ok 1'
Result.Error(1).matchWith({
Ok: ({ value }) => `ok ${value}`,
Error: ({ value }) => `error ${value}`
});
// ==> 'error 1'
matchWith(pattern) {
return pattern[name](this);
}