stringmatching.regex.Interpolators.RSStringContext
An intermediate representation that stores the format described by an interpolated string.
Attributes
-
Graph
-
-
Supertypes
-
trait Matchable
class Any
Members list
enables compile time splitting of string globs with the syntax r"$foo...(, )"
. can be arbitrarily nested, e.g. r"${r"$foos...(, )"}...(; )"
.
enables compile time splitting of string globs with the syntax r"$foo...(, )"
. can be arbitrarily nested, e.g. r"${r"$foos...(, )"}...(; )"
.
case r"Foo $id: $bars...(, )" => (id, bars)
is equivalent to
case s"Foo $id: $bars0" => (id, bars0.split(", ").toIndexedSeq)
Attributes