distinct

.distinct from:{Iterable<Any>} -> Iterable<Any>

Return

a new collection with the same elements as the original, without duplicates

Parameters

from

collection to get the distinct elements from

Chaining

This function is designed to be chained with other function calls:
Iterable<Any>::distinct -> Iterable<Any>