Introduce option type (#4150)

* Introduce option type

* Improve test naming
This commit is contained in:
Aya Morisawa
2019-02-06 13:42:35 +09:00
committed by GitHub
parent 1974d8f58b
commit e9955e01d6
2 changed files with 48 additions and 0 deletions

20
src/prelude/maybe.ts Normal file
View File

@ -0,0 +1,20 @@
export interface Maybe<T> {
isJust(): this is Just<T>;
}
export type Just<T> = Maybe<T> & {
get(): T
};
export function just<T>(value: T): Just<T> {
return {
isJust: () => true,
get: () => value
};
}
export function nothing<T>(): Maybe<T> {
return {
isJust: () => false,
};
}