Packages

object WrappedString extends SpecificIterableFactory[Char, WrappedString] with java.io.Serializable

A companion object for wrapped strings.

Annotations
@SerialVersionUID()
Source
WrappedString.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedString
  2. Serializable
  3. SpecificIterableFactory
  4. Factory
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit final class UnwrapOp extends AnyVal

Value Members

  1. def apply(xs: Char*): WrappedString
    Definition Classes
    SpecificIterableFactory
  2. val empty: WrappedString
  3. def fill(n: Int)(elem: => Char): WrappedString
    Definition Classes
    SpecificIterableFactory
  4. def fromSpecific(it: IterableOnce[Char]): WrappedString

    it

    Source collection

    returns

    A collection of type C containing the same elements as the source collection it.

    Definition Classes
    WrappedStringFactory
  5. def newBuilder: Builder[Char, WrappedString]

    Get a Builder for the collection.

    Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

    Definition Classes
    WrappedStringSpecificIterableFactoryFactory
  6. implicit def specificIterableFactory: Factory[Char, WrappedString]
    Definition Classes
    SpecificIterableFactory