master
Maybe
export class Maybe<T> implements IMaybe<T> { constructor(private readonly value?: T | null) { } public of(value: T): IMaybe<T> {