Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InverseLiveBool.zs 288B

1234567891011121314
  1. public class InverseLiveBool {
  2. val source as LiveBool;
  3. public this(source as LiveBool) {
  4. this.source = source;
  5. }
  6. public implements LiveBool {
  7. get value => !source.value;
  8. addListener(listener)
  9. => source.addListener((oldVal, newVal) => listener(!oldVal, !newVal));
  10. }
  11. }