guix/tests/lang/eval-okay-types.nix

26 lines
470 B
Nix
Raw Normal View History

2013-10-24 00:51:28 +00:00
with builtins;
[ (isNull null)
(isNull (x: x))
(isFunction (x: x))
(isFunction "fnord")
(isString ("foo" + "bar"))
(isString [ "x" ])
(isInt (1 + 2))
(isInt { x = 123; })
(isBool (true && false))
(isBool null)
2014-02-26 18:08:44 +00:00
(isAttrs { x = 123; })
(isAttrs null)
2013-10-24 00:51:28 +00:00
(typeOf (3 * 4))
(typeOf true)
(typeOf "xyzzy")
(typeOf null)
(typeOf { x = 456; })
(typeOf [ 1 2 3 ])
(typeOf (x: x))
(typeOf ((x: y: x) 1))
(typeOf map)
(typeOf (map (x: x)))
]