equalsInt

fun A_Number.equalsInt(theInt: Int): Boolean

Determine if the receiver is an Avail integer equivalent to the specified Kotlin Int. Note that a non-integer should simply answer false, not fail. This operation was placed in A_Number for organizational reasons, not type restriction.

Return

Whether the receiver represents that integer.

Parameters

theInt

The Java int to compare against.