scala.collection.generic.SortedMapFactory

class SortedMapCanBuildFrom

[source: scala/collection/generic/SortedMapFactory.scala]

class SortedMapCanBuildFrom[A, B](implicit ord : Ordering[A])
extends CanBuildFrom[CC, (A, B), CC[A, B]] with AnyRef
Method Summary
def apply : Builder[(A, B), CC[A, B]]
Creates a new builder from scratch
def apply (from : CC) : Builder[(A, B), CC[A, B]]
Creates a new builder, using `from` as a prototype the resulting Builder will build the same kind of collection
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def apply(from : CC) : Builder[(A, B), CC[A, B]]
Creates a new builder, using `from` as a prototype the resulting Builder will build the same kind of collection
Overrides
CanBuildFrom.apply

def apply : Builder[(A, B), CC[A, B]]
Creates a new builder from scratch
Overrides
CanBuildFrom.apply