All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.panhongan.util.collection.CollectionUtil.scala Maven / Gradle / Ivy

The newest version!
package com.github.panhongan.util.collection

import scala.collection.mutable.Set

object CollectionUtil {

  def distinct(iter: Iterator[String]): Iterator[String] = {
    val set = Set[String]()

    while (iter.hasNext) {
      set += iter.next()
    }

    set.toIterator
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy