enum-ts
Place this definition somewhere in your project:
typescript
/**
* This special type can help generate pattern matchers for you!
* Just use it as so:
* // enum-ts
* type Result<Ok, Err> = Enum<{
* Ok: Ok,
* Err: Err,
* }>
*/
export type Enum<T extends { [Variant: string]: any }> = {
}[keyof T];
Now whenever you write a type with Enum
definition at the root of a file (cannot be nested in another block), then
enum-ts
will be able to generate exhaustive pattern matchers and constructor code for you!
Input
typescript
type Result<O, E> = Enum<{
Ok: O;
Err: E;
}>;
Generated
typescript
namespace Result {
export function Ok<O, E>(contents: O): Result<O, E> {
return { t: "Ok", c: contents };
}
export function Err<O, E>(contents: E): Result<O, E> {
return { t: "Err", c: contents };
}
export function apply<O, E, R>(fns: {
Ok(content: O): R;
Err(content: E): R;
}): (value: Result<O, E>) => R {
return function matchResultApply(value) {
// @ts-ignore
return fns[value.t](value.c);
};
}
export function match<O, E, R>(
value: Result<O, E>,
fns: {
Ok(content: O): R;
Err(content: E): R;
}
): R {
return apply(fns)(value);
}
}
Usage
typescript
const res = Result.Ok<string, any>("okay value")
Result.match(res, {
Ok(value) {
// do something with value
},
Err(err) {
// do something with err
},
})
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.