Fixes:
- Added a note in the help page of the
broadcasterclass regarding possibly incompatible functions
(#4). - Fixed the "nand" operator to be correctly defined as
!(x & y),
and bypasses the low-level 'C++' short-circuit evaluation issues.
New operators:
- Added new Boolean & bit-wise operation: "nor", defined as
!(x | y) - Added new string operation: "lcss" (longest common sub-string).
Other:
- Slight performance improvement for integer relational operations.