KtcSet<E> extension

on

Operators

operator &(Iterable<E> other) Set<E>
Returns a Set containing all elements that are contained by both this collection and the specified collection.
operator +(Iterable<E> other) Set<E>
Returns an Set containing all elements of the original collection and then all elements of the other collection.
operator -(Iterable<E> other) Set<E>
Returns an Set containing all elements of the original collection except the elements contained in the other collection.
operator <<(int count) Set<E>
Returns an Set that has been removed by the number of count from the beginning.
operator >>(int count) Set<E>
Returns an Set that has been removed by the number of count from the end.
operator ^(Iterable<E> other) Set<E>
Returns a Set containing all elements from both collections without intersect.
operator |(Iterable<E> other) Set<E>
Returns a Set containing all distinct elements from both collections.