isSubsetOf

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

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

Return

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

Parameters

other

another BitArray of same size.

Throws

if arrays are not the same size.