subtract
infix fun ShortArray.subtract(
other: Iterable<Short>
): Set<Short>
infix fun FloatArray.subtract(
other: Iterable<Float>
): Set<Float>
infix fun DoubleArray.subtract(
other: Iterable<Double>
): Set<Double>
infix fun BooleanArray.subtract(
other: Iterable<Boolean>
): Set<Boolean>
Returns a set containing all elements that are contained by this array and not contained by the specified collection.
The returned set preserves the element iteration order of the original array.