Any equivalent of EnumSet for KotlinJS - I'd like ...
# javascript
e
Any equivalent of EnumSet for KotlinJS - I'd like to have a "Flags" type enum that I can do bitwise OR and AND
🚫 1
😜 1
t
Do you need external flags?
Solution for external flags you can find here - https://github.com/turansky/yfiles-kotlin#flags
Most cases will work the same way for ordinal classes
e
Cheers