distinct method

List<T> distinct()

Implementation

List<T> distinct() {
	return this.toSet().toList();
}