nixfiles/libs/core/lib/null/default.nix
Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

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;
}