is it possible to have multiple `infix` functions ...
# announcements
m
is it possible to have multiple
infix
functions in a chain? for example,
true and not false
where
and
and
not
are
infix
functions
c
Kotlin’s
infix
functions are always binary operators.
not
would be a unary operator, so no, that cannot be done
g
No, you cannot do this, only something like
andNot
function
m
ok