How do I OR together constants in Kotlin?
# getting-started
s
How do I OR together constants in Kotlin?
c
Just like OR-ing any other booleans https://pl.kotl.in/q5IKNfykQ
p
if you’re talking about numeric constants, you can seemingly still use the infix
or
function: https://pl.kotl.in/CC1dCZ_P3
s
Numeric constants. Thanks
👍 2