Class

org.cvogt.scala.collection

StringGenTraversableOnceExtensions

Related Doc: package collection

Permalink

implicit final class StringGenTraversableOnceExtensions extends AnyVal

Extension methods on String collections

Source
collection.scala
Linear Supertypes
AnyVal, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StringGenTraversableOnceExtensions
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StringGenTraversableOnceExtensions(coll: GenTraversableOnce[String])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to any2stringadd[StringGenTraversableOnceExtensions] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (StringGenTraversableOnceExtensions, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to ArrowAssoc[StringGenTraversableOnceExtensions] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val coll: GenTraversableOnce[String]

    Permalink
  8. def concat: String

    Permalink

    Displays all elements of this collection or iterator in a string.

    Displays all elements of this collection or iterator in a string. Type-safe alternative to mkString.

    returns

    a string representation of this collection or iterator. In the resulting string the string representations (w.r.t. the method toString) of all elements of this collection or iterator follow each other without any separator string.

    Annotations
    @inline()
  9. def concat(sep: String): String

    Permalink

    Displays all elements of this collection or iterator in a string using a separator string.

    Displays all elements of this collection or iterator in a string using a separator string. Type-safe alternative to mkString.

    sep

    the separator string.

    returns

    a string representation of this collection or iterator. In the resulting string the string representations (w.r.t. the method toString) of all elements of this collection or iterator are separated by the string sep.

    Annotations
    @inline()
    Example:
    1. List(1, 2, 3).concat("|") = "1|2|3"

  10. def concat(start: String, sep: String, end: String): String

    Permalink

    Displays all elements of this collection or iterator in a string using start, end, and separator strings.

    Displays all elements of this collection or iterator in a string using start, end, and separator strings. Type-safe alternative to mkString.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this collection or iterator. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this collection or iterator are separated by the string sep.

    Annotations
    @inline()
    Example:
    1. List(1, 2, 3).concat("(", "; ", ")") = "(1; 2; 3)"

  11. def ensuring(cond: (StringGenTraversableOnceExtensions) ⇒ Boolean, msg: ⇒ Any): StringGenTraversableOnceExtensions

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to Ensuring[StringGenTraversableOnceExtensions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (StringGenTraversableOnceExtensions) ⇒ Boolean): StringGenTraversableOnceExtensions

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to Ensuring[StringGenTraversableOnceExtensions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): StringGenTraversableOnceExtensions

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to Ensuring[StringGenTraversableOnceExtensions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): StringGenTraversableOnceExtensions

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to Ensuring[StringGenTraversableOnceExtensions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to StringFormat[StringGenTraversableOnceExtensions] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def toString(): String

    Permalink
    Definition Classes
    Any
  19. def [B](y: B): (StringGenTraversableOnceExtensions, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from StringGenTraversableOnceExtensions to ArrowAssoc[StringGenTraversableOnceExtensions] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from StringGenTraversableOnceExtensions to any2stringadd[StringGenTraversableOnceExtensions]

Inherited by implicit conversion StringFormat from StringGenTraversableOnceExtensions to StringFormat[StringGenTraversableOnceExtensions]

Inherited by implicit conversion Ensuring from StringGenTraversableOnceExtensions to Ensuring[StringGenTraversableOnceExtensions]

Inherited by implicit conversion ArrowAssoc from StringGenTraversableOnceExtensions to ArrowAssoc[StringGenTraversableOnceExtensions]

Ungrouped