2013-10-24 02:51:28 +02:00
|
|
|
with builtins;
|
|
|
|
|
|
|
|
[ (isNull null)
|
|
|
|
(isNull (x: x))
|
|
|
|
(isFunction (x: x))
|
|
|
|
(isFunction "fnord")
|
|
|
|
(isString ("foo" + "bar"))
|
|
|
|
(isString [ "x" ])
|
|
|
|
(isInt (1 + 2))
|
|
|
|
(isInt { x = 123; })
|
2016-01-06 10:03:24 +01:00
|
|
|
(isInt (1 / 2))
|
|
|
|
(isInt (1 + 1))
|
|
|
|
(isInt (1 / 2))
|
|
|
|
(isInt (1 * 2))
|
|
|
|
(isInt (1 - 2))
|
|
|
|
(isFloat (1.2))
|
|
|
|
(isFloat (1 + 1.0))
|
|
|
|
(isFloat (1 / 2.0))
|
|
|
|
(isFloat (1 * 2.0))
|
|
|
|
(isFloat (1 - 2.0))
|
2013-10-24 02:51:28 +02:00
|
|
|
(isBool (true && false))
|
|
|
|
(isBool null)
|
2014-02-26 19:08:44 +01:00
|
|
|
(isAttrs { x = 123; })
|
|
|
|
(isAttrs null)
|
2013-10-24 02:51:28 +02: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)))
|
|
|
|
]
|