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

Builds a Boolean from an unsigned integer. Zero becomes false, every other value becomes true.

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