Contains standard libraries for ZenCode.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 12345678910111213141516 |
- import listeners.DummyListenerHandle;
-
- export class ImmutableLiveBool {
- public const TRUE = new ImmutableLiveBool(true);
- public const FALSE = new ImmutableLiveBool(false);
-
- val value as bool : get;
-
- private this(value as bool) {
- this.value = value;
- }
-
- public implements LiveBool {
- addListener(listener) => new DummyListenerHandle<LiveBool.Listener>`unique(listener);
- }
- }
|