the underlying Traversable with unique elements.
(Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.
(Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.
(Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.
(eqSetFacade: any2stringadd[EqSetFacade[A]]).+(other)
(eqSetFacade: MonadOps[A]).filter(p)
(eqSetFacade: MonadOps[A]).flatMap(f)
(eqSetFacade: MonadOps[A]).map(f)
(eqSetFacade: MonadOps[A]).withFilter(p)
Wraps the Traversable
tto a Set utilizing reference equality. It aims at efficiently creating a set in case the caller ensures that all elements intare unique.+and-are O(N) returning scala.collection.immutable.Set.