isSupersetOf

infix fun isSupersetOf(other: BitArray): Boolean(source)

Returns true if every true bit in other is also true in this array (superset test).

Return

true if this array is a superset of other, false otherwise.

Parameters

other

another BitArray of same size.

Throws

if arrays are not the same size.