17 lines
332 B
Nix
17 lines
332 B
Nix
{ intrinsics, type, ... }:
|
|
type "null"
|
|
{
|
|
isInstanceOf = value: value == null;
|
|
isPrimitive = true;
|
|
|
|
default
|
|
= value:
|
|
other:
|
|
if value != null
|
|
then
|
|
value
|
|
else
|
|
other;
|
|
|
|
inherit(intrinsics) null;
|
|
} |