isSubsetOf

fun A_Set.isSubsetOf(another: A_Set): Boolean

Answer true if and only if every element of the receiver is also present in the provided set.

Return

Whether the receiver is a subset of another.

Parameters

another

The potential superset of the receiver.