sanctuary-def is a run-time type system for JavaScript. It facilitates the definition of curried JavaScript functions which are explicit about the number of arguments to which they may be applied and the types of those arguments.
It is conventional to import the package as $
:
const $ = require('sanctuary-def');
The next step is to define an environment. An environment is an array
of types. env
is an environment containing all the built-in
JavaScript types. It may be used as the basis for environments which
include custom types in addition to the built-in types:
// Integer :: Type
const Integer = ...;
// NonZeroInteger :: Type
const NonZeroInteger = ...;
// env :: Array Type
const env = $.env.concat([Integer, NonZeroInteger]);
The next step is to define a def
function for the environment:
const def = $.create({checkTypes: true, env: env});
The checkTypes
option determines whether type checking is enabled.
This allows one to only pay the performance cost of run-time type checking
during development. For example:
const def = $.create({
checkTypes: process.env.NODE_ENV === 'development',
env: env,
});
def
is a function for defining functions. For example:
// add :: Number -> Number -> Number
const add =
def('add', {}, [$.Number, $.Number, $.Number], (x, y) => x + y);
[$.Number, $.Number, $.Number]
specifies that add
takes two arguments
of type Number
and returns a value of type Number
.
Applying add
to two arguments gives the expected result:
add(2, 2);
// => 4
Applying add
to greater than two arguments results in an exception being
thrown:
add(2, 2, 2);
// ! TypeError: ‘add’ requires two arguments; received three arguments
Applying add
to fewer than two arguments results in a function
awaiting the remaining arguments. This is known as partial application.
Partial application is convenient as it allows more specific functions
to be defined in terms of more general ones:
// inc :: Number -> Number
const inc = add(1);
inc(7);
// => 8
JavaScript's implicit type coercion often obfuscates the source of type errors. Consider the following function:
// _add :: (Number, Number) -> Number
const _add = (x, y) => x + y;
The type signature indicates that _add
takes two arguments of type
Number
, but this is not enforced. This allows type errors to be silently
ignored:
_add('2', '2');
// => '22'
add
, on the other hand, throws if applied to arguments of the wrong
types:
add('2', '2');
// ! TypeError: Invalid value
//
// add :: Number -> Number -> Number
// ^^^^^^
// 1
//
// 1) "2" :: String
//
// The value at position 1 is not a member of ‘Number’.
Type checking is performed as arguments are provided (rather than once all arguments have been provided), so type errors are reported early:
add('X');
// ! TypeError: Invalid value
//
// add :: Number -> Number -> Number
// ^^^^^^
// 1
//
// 1) "X" :: String
//
// The value at position 1 is not a member of ‘Number’.
The special placeholder value.
One may wish to partially apply a function whose parameters are in the "wrong" order. Functions defined via sanctuary-def accommodate this by accepting placeholders for arguments yet to be provided. For example:
// concatS :: String -> String -> String
const concatS =
def('concatS', {}, [$.String, $.String, $.String], (x, y) => x + y);
// exclaim :: String -> String
const exclaim = concatS($.__, '!');
exclaim('ahoy');
// => 'ahoy!'
Conceptually, a type is a set of values. One can think of a value of
type Type
as a function of type Any -> Boolean
which tests values
for membership in the set (though this is an oversimplification).
Type comprising every JavaScript value.
Type comprising every Function value.
Type comprising every arguments
object.
Constructor for homogeneous Array types.
Type comprising true
and false
.
Type comprising every Date value.
Type comprising every Error value, including values of more specific
constructors such as SyntaxError
and TypeError
.
Type comprising every ValidNumber
value except Infinity
and
-Infinity
.
Constructor for Function types.
Examples:
$.Function([$.Date, $.String])
represents theDate -> String
type; and$.Function([a, b, a])
represents the(a, b) -> a
type.
Type comprising every RegExp
value whose global
flag is true
.
See also NonGlobalRegExp
.
Type comprising every integer in the range
[Number.MIN_SAFE_INTEGER
.. Number.MAX_SAFE_INTEGER
].
Type comprising every FiniteNumber
value less than zero.
Type comprising every Integer
value less than zero.
Type comprising every Number
value less than zero.
Type comprising every RegExp
value whose global
flag is false
.
See also GlobalRegExp
.
Type comprising every FiniteNumber
value except 0
and -0
.
Type comprising every Integer
value except 0
and -0
.
Type comprising every ValidNumber
value except 0
and -0
.
Type whose sole member is null
.
Constructor for types which include null
as a member.
Type comprising every primitive Number value (including NaN
).
Type comprising every "plain" Object value. Specifically, values created via:
- object literal syntax;
Object.create
; or- the
new
operator in conjunction withObject
or a custom constructor function.
Constructor for tuple types of length 2. Arrays are said to represent
tuples. ['foo', 42]
is a member of Pair String Number
.
Type comprising every FiniteNumber
value greater than zero.
Type comprising every Integer
value greater than zero.
Type comprising every Number
value greater than zero.
Type comprising every RegExp value.
Type comprising the canonical RegExp flags:
''
'g'
'i'
'm'
'gi'
'gm'
'im'
'gim'
Constructor for homogeneous Object types.
{foo: 1, bar: 2, baz: 3}
, for example, is a member of StrMap Number
;
{foo: 1, bar: 2, baz: 'XXX'}
is not.
Type comprising every primitive String value.
Type whose sole member is undefined
.
Type used internally to represent missing type information. The type of
[]
, for example, is Array ???
. This type is exported solely for use
by other Sanctuary packages.
Type comprising every Date
value except new Date(NaN)
.
Type comprising every Number
value except NaN
.
An array of types:
Takes an environment, a type, and any value. Returns true
if the value
is a member of the type; false
otherwise.
The environment is only significant if the type contains type variables.
One may define a more restrictive type in terms of a more general one:
// NonNegativeInteger :: Type
const NonNegativeInteger = $.NullaryType(
'my-package/NonNegativeInteger',
'http://example.com/my-package#NonNegativeInteger',
x => $.test([], $.Integer, x) && x >= 0
);
Using types as predicates is useful in other contexts too. One could, for example, define a record type for each endpoint of a REST API and validate the bodies of incoming POST requests against these types.
sanctuary-def provides several functions for defining types.
Type constructor for types with no type variables (such as Number
).
To define a nullary type t
one must provide:
-
the name of
t
(exposed ast.name
); -
the documentation URL of
t
(exposed ast.url
); and -
a predicate which accepts any JavaScript value and returns
true
if (and only if) the value is a member oft
.
For example:
// Integer :: Type
const Integer = $.NullaryType(
'my-package/Integer',
'http://example.com/my-package#Integer',
x => typeof x === 'number' &&
Math.floor(x) === x &&
x >= Number.MIN_SAFE_INTEGER &&
x <= Number.MAX_SAFE_INTEGER
);
// NonZeroInteger :: Type
const NonZeroInteger = $.NullaryType(
'my-package/NonZeroInteger',
'http://example.com/my-package#NonZeroInteger',
x => $.test([], Integer, x) && x !== 0
);
// rem :: Integer -> NonZeroInteger -> Integer
const rem =
def('rem', {}, [Integer, NonZeroInteger, Integer], (x, y) => x % y);
rem(42, 5);
// => 2
rem(0.5);
// ! TypeError: Invalid value
//
// rem :: Integer -> NonZeroInteger -> Integer
// ^^^^^^^
// 1
//
// 1) 0.5 :: Number
//
// The value at position 1 is not a member of ‘Integer’.
rem(42, 0);
// ! TypeError: Invalid value
//
// rem :: Integer -> NonZeroInteger -> Integer
// ^^^^^^^^^^^^^^
// 1
//
// 1) 0 :: Number
//
// The value at position 1 is not a member of ‘NonZeroInteger’.
Type constructor for types with one type variable (such as Array
).
To define a unary type t a
one must provide:
-
the name of
t
(exposed ast.name
); -
the documentation URL of
t
(exposed ast.url
); -
a predicate which accepts any JavaScript value and returns
true
if (and only if) the value is a member oft x
for some typex
; -
a function which takes any value of type
t a
and returns an array of the values of typea
contained in thet
(exposed ast.types.$1.extractor
); and -
the type of
a
(exposed ast.types.$1.type
).
For example:
const type = require('sanctuary-type-identifiers');
// maybeTypeIdent :: String
const maybeTypeIdent = 'my-package/Maybe';
// Maybe :: Type -> Type
const Maybe = $.UnaryType(
maybeTypeIdent,
'http://example.com/my-package#Maybe',
x => type(x) === maybeTypeIdent,
maybe => maybe.isJust ? [maybe.value] : []
);
// MaybeTypeRep :: TypeRep Maybe
const MaybeTypeRep = {'@@type': maybeTypeIdent};
// Nothing :: Maybe a
const Nothing = {
constructor: MaybeTypeRep,
isJust: false,
isNothing: true,
toString: () => 'Nothing',
};
// Just :: a -> Maybe a
const Just = x => ({
constructor: MaybeTypeRep,
isJust: true,
isNothing: false,
toString: () => 'Just(' + Z.toString(x) + ')',
value: x,
});
// fromMaybe :: a -> Maybe a -> a
const fromMaybe =
def('fromMaybe', {}, [a, Maybe(a), a], (x, m) => m.isJust ? m.value : x);
fromMaybe(0, Just(42));
// => 42
fromMaybe(0, Nothing);
// => 0
fromMaybe(0, Just('XXX'));
// ! TypeError: Type-variable constraint violation
//
// fromMaybe :: a -> Maybe a -> a
// ^ ^
// 1 2
//
// 1) 0 :: Number
//
// 2) "XXX" :: String
//
// Since there is no type of which all the above values are members, the type-variable constraint has been violated.
BinaryType :: String -> String -> (Any -> Boolean) -> (t a b -> Array a) -> (t a b -> Array b) -> (Type -> Type -> Type)
Type constructor for types with two type variables (such as Pair
).
To define a binary type t a b
one must provide:
-
the name of
t
(exposed ast.name
); -
the documentation URL of
t
(exposed ast.url
); -
a predicate which accepts any JavaScript value and returns
true
if (and only if) the value is a member oft x y
for some typesx
andy
; -
a function which takes any value of type
t a b
and returns an array of the values of typea
contained in thet
(exposed ast.types.$1.extractor
); -
a function which takes any value of type
t a b
and returns an array of the values of typeb
contained in thet
(exposed ast.types.$2.extractor
); -
the type of
a
(exposed ast.types.$1.type
); and -
the type of
b
(exposed ast.types.$2.type
).
For example:
const type = require('sanctuary-type-identifiers');
// pairTypeIdent :: String
const pairTypeIdent = 'my-package/Pair';
// $Pair :: Type -> Type -> Type
const $Pair = $.BinaryType(
pairTypeIdent,
'http://example.com/my-package#Pair',
x => type(x) === pairTypeIdent,
pair => [pair[0]],
pair => [pair[1]]
);
// PairTypeRep :: TypeRep Pair
const PairTypeRep = {'@@type': pairTypeIdent};
// Pair :: a -> b -> Pair a b
const Pair = def('Pair', {}, [a, b, $Pair(a, b)], (x, y) => ({
'0': x,
'1': y,
constructor: PairTypeRep,
length: 2,
toString: () => 'Pair(' + Z.toString(x) + ', ' + Z.toString(y) + ')',
}));
// Rank :: Type
const Rank = $.NullaryType(
'my-package/Rank',
'http://example.com/my-package#Rank',
x => typeof x === 'string' && /^([A23456789JQK]|10)$/.test(x)
);
// Suit :: Type
const Suit = $.NullaryType(
'my-package/Suit',
'http://example.com/my-package#Suit',
x => typeof x === 'string' && /^[\u2660\u2663\u2665\u2666]$/.test(x)
);
// Card :: Type
const Card = $Pair(Rank, Suit);
// showCard :: Card -> String
const showCard =
def('showCard', {}, [Card, $.String], card => card[0] + card[1]);
showCard(Pair('A', '♠'));
// => 'A♠'
showCard(Pair('X', '♠'));
// ! TypeError: Invalid value
//
// showCard :: Pair Rank Suit -> String
// ^^^^
// 1
//
// 1) "X" :: String
//
// The value at position 1 is not a member of ‘Rank’.
Type constructor for enumerated types (such as RegexFlags
).
To define an enumerated type t
one must provide:
-
the name of
t
(exposed ast.name
); -
the documentation URL of
t
(exposed ast.url
); and -
an array of distinct values.
For example:
// Denomination :: Type
const Denomination = $.EnumType(
'my-package/Denomination',
'http://example.com/my-package#Denomination',
[10, 20, 50, 100, 200]
);
RecordType
is used to construct record types. The type definition
specifies the name and type of each required field.
To define a record type one must provide:
- an object mapping field name to type.
For example:
// Point :: Type
const Point = $.RecordType({x: $.FiniteNumber, y: $.FiniteNumber});
// dist :: Point -> Point -> FiniteNumber
const dist =
def('dist', {}, [Point, Point, $.FiniteNumber],
(p, q) => Math.sqrt(Math.pow(p.x - q.x, 2) +
Math.pow(p.y - q.y, 2)));
dist({x: 0, y: 0}, {x: 3, y: 4});
// => 5
dist({x: 0, y: 0}, {x: 3, y: 4, color: 'red'});
// => 5
dist({x: 0, y: 0}, {x: NaN, y: NaN});
// ! TypeError: Invalid value
//
// dist :: { x :: FiniteNumber, y :: FiniteNumber } -> { x :: FiniteNumber, y :: FiniteNumber } -> FiniteNumber
// ^^^^^^^^^^^^
// 1
//
// 1) NaN :: Number
//
// The value at position 1 is not a member of ‘FiniteNumber’.
dist(0);
// ! TypeError: Invalid value
//
// dist :: { x :: FiniteNumber, y :: FiniteNumber } -> { x :: FiniteNumber, y :: FiniteNumber } -> FiniteNumber
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// 1
//
// 1) 0 :: Number
//
// The value at position 1 is not a member of ‘{ x :: FiniteNumber, y :: FiniteNumber }’.
Polymorphism is powerful. Not being able to define a function for all types would be very limiting indeed: one couldn't even define the identity function!
Before defining a polymorphic function one must define one or more type variables:
const a = $.TypeVariable('a');
const b = $.TypeVariable('b');
// id :: a -> a
const id = def('id', {}, [a, a], x => x);
id(42);
// => 42
id(null);
// => null
The same type variable may be used in multiple positions, creating a constraint:
// cmp :: a -> a -> Number
const cmp =
def('cmp', {}, [a, a, $.Number], (x, y) => x < y ? -1 : x > y ? 1 : 0);
cmp(42, 42);
// => 0
cmp('a', 'z');
// => -1
cmp('z', 'a');
// => 1
cmp(0, '1');
// ! TypeError: Type-variable constraint violation
//
// cmp :: a -> a -> Number
// ^ ^
// 1 2
//
// 1) 0 :: Number
//
// 2) "1" :: String
//
// Since there is no type of which all the above values are members, the type-variable constraint has been violated.
Combines UnaryType
and TypeVariable
.
To define a unary type variable t a
one must provide:
-
a name (conventionally matching
^[a-z]$
); and -
the type of
a
(exposed ast.types.$1.type
).
Consider the type of a generalized map
:
map :: Functor f => (a -> b) -> f a -> f b
f
is a unary type variable. With two (nullary) type variables, one
unary type variable, and one type class it's possible to define a
fully polymorphic map
function:
const $ = require('sanctuary-def');
const Z = require('sanctuary-type-classes');
const a = $.TypeVariable('a');
const b = $.TypeVariable('b');
const f = $.UnaryTypeVariable('f');
// map :: Functor f => (a -> b) -> f a -> f b
const map =
def('map',
{f: [Z.Functor]},
[$.Function([a, b]), f(a), f(b)],
Z.map);
Whereas a regular type variable is fully resolved (a
might become
Array (Array String)
, for example), a unary type variable defers to
its type argument, which may itself be a type variable. The type argument
corresponds to the type argument of a unary type or the second type
argument of a binary type. The second type argument of Map k v
, for
example, is v
. One could replace Functor => f
with Map k
or with
Map Integer
, but not with Map
.
This shallow inspection makes it possible to constrain a value's "outer" and "inner" types independently.
Combines BinaryType
and TypeVariable
.
To define a binary type variable t a b
one must provide:
-
a name (conventionally matching
^[a-z]$
); -
the type of
a
(exposed ast.types.$1.type
); and -
the type of
b
(exposed ast.types.$2.type
).
The more detailed explanation of UnaryTypeVariable
also applies to
BinaryTypeVariable
.
concatS
, defined earlier, is a function which concatenates two strings.
This is overly restrictive, since other types support concatenation
(Array, for example).
One could use a type variable to define a polymorphic "concat" function:
// _concat :: a -> a -> a
const _concat =
def('_concat', {}, [a, a, a], (x, y) => x.concat(y));
_concat('fizz', 'buzz');
// => 'fizzbuzz'
_concat([1, 2], [3, 4]);
// => [1, 2, 3, 4]
_concat([1, 2], 'buzz');
// ! TypeError: Type-variable constraint violation
//
// _concat :: a -> a -> a
// ^ ^
// 1 2
//
// 1) [1, 2] :: Array Number
//
// 2) "buzz" :: String
//
// Since there is no type of which all the above values are members, the type-variable constraint has been violated.
The type of _concat
is misleading: it suggests that it can operate on
any two values of any one type. In fact there's an implicit constraint,
since the type must support concatenation (in mathematical
terms, the type must have a semigroup). The run-time type
errors that result when this constraint is violated are not particularly
descriptive:
_concat({}, {});
// ! TypeError: undefined is not a function
_concat(null, null);
// ! TypeError: Cannot read property 'concat' of null
The solution is to constrain a
by first defining a TypeClass
value, then specifying the constraint in the definition of the "concat"
function:
const Z = require('sanctuary-type-classes');
// Semigroup :: TypeClass
const Semigroup = Z.TypeClass(
'my-package/Semigroup',
[],
x => x != null && typeof x.concat === 'function'
);
// concat :: Semigroup a => a -> a -> a
const concat =
def('concat', {a: [Semigroup]}, [a, a, a], (x, y) => x.concat(y));
concat([1, 2], [3, 4]);
// => [1, 2, 3, 4]
concat({}, {});
// ! TypeError: Type-class constraint violation
//
// concat :: Semigroup a => a -> a -> a
// ^^^^^^^^^^^ ^
// 1
//
// 1) {} :: Object, StrMap ???
//
// ‘concat’ requires ‘a’ to satisfy the Semigroup type-class constraint; the value at position 1 does not.
concat(null, null);
// ! TypeError: Type-class constraint violation
//
// concat :: Semigroup a => a -> a -> a
// ^^^^^^^^^^^ ^
// 1
//
// 1) null :: Null
//
// ‘concat’ requires ‘a’ to satisfy the Semigroup type-class constraint; the value at position 1 does not.
Multiple constraints may be placed on a type variable by including
multiple TypeClass
values in the array (e.g. {a: [Foo, Bar, Baz]}
).