Alec Muffett
10/23/2020, 2:39 PM>>> val b = 42.toByte()
>>> b
res10: kotlin.Byte = 42
>>> b.and(b)
error: unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public inline infix fun BigInteger.and(other: BigInteger): BigInteger defined in kotlin
b.and(b)
Can anyone please point out my misapprehension? [info: kotlinc-jvm 1.4.10 (JRE 14.0.1+14)]