option-t

Installation
npm install --save option-t
Usage
var OptionT = require('option-t');
var some = new OptionT.Some(1);
console.log(some.isSome);
console.log(some.unwrap());
var none = new OptionT.None();
console.log(none.isSome);
console.log(none.unwrap());
JSON Representation
Some<T>
new Some(1)
will be:
{
"is_some": true,
"value": 1
}
None
new None()
will be:
{
"is_some": false
}
API
Cast Option<T>
to Promise
.
If you'd like to cast Option<T>
to a Promise
like object,
you can write a custom cast function or use Option<T>.mapOrElse()
.
function castToPromise1(option: Option<T>): Promise<T> {
return option.mapOrElse(() => Promise.reject(), (v: T) => Promise.resolve(v));
}
function castToPromise2(option: Option<T>): Promise<{ ok: boolean; value: T }> {
const result = {
ok: false,
value: undefined,
};
return option.mapOrElse(() => {
return Promise.resolve(result);
}, (v: T) => {
result.ok = true;
result.value = v;
return Promise.resolve(v);
});
}
In previous version (~v0.17), we provide Option<T>.asPromise()
utility method for this purpose.
Its methods always treats None
as a rejected Promise
.
But there are various cases which we would not like to cast to a Promise from an Optional type with single way,
there are various context to handle a None
value.
Thus we don't provide a default way to cast to Promise
. Please define a most suitable way to your project.
Semantics
This library represents Option type in ECMAScript.
So this object will be the one of following states:
Some<T>
option instanceof OptionT.Some
option.isSome === true
.
None
option instanceof OptionT.None
option.isSome === false
.
Option<T>
This type is a interface to represent Option<T>
.
Some<T>
and None
must implement this Option<T>
interface.
This is just interface. This is not exported to an environment
which has no interface feature as a part of its type system like TypeScript.
If you'd like to check whether the object option
is Option<T>
or not in such an environment,
you can use option instanceof OptionT.OptionBase
to check it.
But this way is not a tier-1 approach. We recommend to use a interface and type system strongly.
We export OptionT.OptionBase
object to the type definition for TypeScript, but this is only for
the compatibility to cooperate with some libralies which are use instanceof
checking
to work together with others in the pure JavaScript world.
Our basic stance is that you should not use OptionT.OptionBase
and need not it in almost case in TypeScript or other static typed languages.
Some<T>
This type represents that there are some values T
.
If this value wraps null
, it just means that there is a null value.
None
(None<T>
)
This type represents that there is no value explicitly.
It is just None !== null
.
How to represent same things without this library?
Of course, there some alternative approaches. We introduce them.
Use an object with destructuring assignment.
From ECMA262 6th, we can use destructuring assignment.
It provides a convinient way to handle/unwrap a value in an object.
type Option<T> = {
ok: boolean;
value: T;
};
const { ok, value, } = getSomeValue();
if (ok) {
}
else {
}
This does same thing which is like a return value of iterator.next()
.
But this approach cannot call instance methods on their returned values.
If you would like to handle a result more seemless, we recommend to use option-t
.
On the other hand, this way (and option-t
) need to allocate an object.
This allocation cost would be a cost.
In the future, a JavaScript runtime may make it more cheap,
but we don't recommend to use this approach if you requires a high performance computing extremely.
Runtime Checking
This would be most popular way to handle a returned value in JavaScript.
const value = getSome();
if (value !== undefined) {
}
else {
}
These approach don't need an extra object allocation like the above approach (and option-t
).
And you need to think about "what is null type? including undefined
or not?".
At least in ECMA262, There are some ways to represent "there're no value".
undefined
(e.g. Map.prototype.get()
)null
(e.g. RegExp.prototype.exec()
)-1
(e.g. String.prototype.indexOf()
)
Use static type checker
Some static type checking tools provides a way to check nullability.
Flowtype and TypeScript checks with thier control flow analysis
(Sorry, I don't know the details of Google Closure Compiler's behavior).
Thus you can leave a runtime nullability checking in your code.
License
MIT License