<@U5T1S9G67> logical or/and are usually short-circ...
# announcements
d
@vpriscan logical or/and are usually short-circuited, so if
something()
is true,
somethingElse()
is never evaluated. this is usually not the case for bitwise operators, but i haven't tested it in kotlin.
👍 3