shorthand for this as? Set<E> ?: toSet()
this as? Set<E> ?: toSet()
itself if the receiver Iterable is already a Set<E>, otherwise calls toSet() to create a new one
Set<E>
toSet()