Packages

t

scala.tools.reflect

FastStringInterpolator

trait FastStringInterpolator extends FormatInterpolator

Source
FastStringInterpolator.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FastStringInterpolator
  2. FormatInterpolator
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final class Conversion extends AnyRef

    A conversion specifier matched in the argi'th string part, with argc arguments to interpolate.

    A conversion specifier matched in the argi'th string part, with argc arguments to interpolate.

    Definition Classes
    FormatInterpolator

Abstract Value Members

  1. abstract val c: Context
    Definition Classes
    FormatInterpolator

Concrete Value Members

  1. val BigDecimalTpe: nsc.Global.Type
    Definition Classes
    FormatInterpolator
  2. val BigIntTpe: nsc.Global.Type
    Definition Classes
    FormatInterpolator
  3. val CalendarTpe: nsc.Global.Type
    Definition Classes
    FormatInterpolator
  4. val DateTpe: nsc.Global.Type
    Definition Classes
    FormatInterpolator
  5. val FormattableTpe: nsc.Global.Type
    Definition Classes
    FormatInterpolator
  6. def concatenate(parts: List[nsc.Global.Tree], args: List[nsc.Global.Tree]): nsc.Global.Tree
  7. val global: universe.type
    Definition Classes
    FormatInterpolator
  8. def interpolateF: nsc.Global.Tree
    Definition Classes
    FormatInterpolator
  9. def interpolateRaw: nsc.Global.Tree
  10. def interpolateS: nsc.Global.Tree
  11. def interpolated(parts: List[nsc.Global.Tree], args: List[nsc.Global.Tree]): nsc.Global.Tree

    Every part except the first must begin with a conversion for the arg that preceded it.

    Every part except the first must begin with a conversion for the arg that preceded it. If the conversion is missing, "%s" is inserted.

    In any other position, the only permissible conversions are the literals (%% and %n) or an index reference (%1$ or %<).

    A conversion specifier has the form:

    [index$][flags][width][.precision]conversion

    1) "...${smth}" => okay, equivalent to "...${smth}%s" 2) "...${smth}blahblah" => okay, equivalent to "...${smth}%sblahblah" 3) "...${smth}%" => error 4) "...${smth}%n" => okay, equivalent to "...${smth}%s%n" 5) "...${smth}%%" => okay, equivalent to "...${smth}%s%%" 6) "...${smth}[%legalJavaConversion]" => okay* 7) "...${smth}[%illegalJavaConversion]" => error *Legal according to java.util.Formatter

    Definition Classes
    FormatInterpolator
  12. var reported: Boolean
    Definition Classes
    FormatInterpolator
  13. object Conversion
    Definition Classes
    FormatInterpolator
  14. object Kind extends Enumeration
    Definition Classes
    FormatInterpolator