klyn.Boolean.Boolean
constructor
public native Boolean(value: Long)
Description

Builds a Boolean from a signed long integer. Zero becomes false, every other value becomes true.

Example
assert Boolean(0l) == false
assert Boolean(12l) == true