DoSomeOps

final implicit
class DoSomeOps[A](it: Iterable[A]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Deprecated methods

@deprecated("use `.iterator.take(count).foreach(f)`", "1.2.0")
def doSome[U](count: Int, f: A => U): Unit

not-so-optimized version of it.take(count).foreach(f) but ensure that a new Collection is not built

not-so-optimized version of it.take(count).foreach(f) but ensure that a new Collection is not built

See also
Deprecated