final class RemoteStringSyntax extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RemoteStringSyntax
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def *(n: Remote[Int]): Remote[String]
- def +(other: Remote[String]): Remote[String]
- def ++(other: Remote[String]): Remote[String]
- def ++:(other: Remote[String]): Remote[String]
- def +:(c: Remote[Char]): Remote[String]
- def :+(c: Remote[Char]): Remote[String]
- def :++(other: Remote[String]): Remote[String]
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def appended(c: Remote[Char]): Remote[String]
- def appendedAll(other: Remote[String]): Remote[String]
- def apply(ix: Remote[Int]): Remote[Char]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def capitalize: Remote[String]
- def charAt(index: Remote[Int]): Remote[Char]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
combinations(n: Remote[Int]): Remote[List[String]]
- Annotations
- @nowarn()
- def concat(suffix: Remote[String]): Remote[String]
- def contains(elem: Remote[Char]): Remote[Boolean]
- def count(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[Int]
- def diff[B >: Char](that: Remote[List[B]]): Remote[String]
- def distinct: Remote[String]
- def distinctBy[B](f: (Remote[Char]) ⇒ Remote[B]): Remote[String]
- def drop(n: Remote[Int]): Remote[String]
- def dropRight(n: Remote[Int]): Remote[String]
- def dropWhile(predicate: (Remote[Char]) ⇒ Remote[Boolean]): Remote[String]
- def endsWith(suffix: Remote[String]): Remote[Boolean]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def exists(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[Boolean]
- def filter(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[String]
- def filterNot(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[String]
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def find(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[Option[Char]]
- def flatMap(f: (Remote[Char]) ⇒ Remote[String]): Remote[String]
- def fold[A1 >: Char](z: Remote[A1])(op: (Remote[A1], Remote[A1]) ⇒ Remote[A1]): Remote[A1]
- def foldLeft[B](z: Remote[B])(op: (Remote[B], Remote[Char]) ⇒ Remote[B]): Remote[B]
- def foldRight[B](z: Remote[B])(op: (Remote[Char], Remote[B]) ⇒ Remote[B]): Remote[B]
- def forall(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[Boolean]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def groupBy[K](f: (Remote[Char]) ⇒ Remote[K]): Remote[Map[K, String]]
- def groupMap[K, B](key: (Remote[Char]) ⇒ Remote[K])(f: (Remote[Char]) ⇒ Remote[B]): Remote[Map[K, List[B]]]
- def groupMapReduce[K, B](key: (Remote[Char]) ⇒ Remote[K])(f: (Remote[Char]) ⇒ Remote[B])(reduce: (Remote[B], Remote[B]) ⇒ Remote[B]): Remote[Map[K, B]]
- def grouped(n: Remote[Int]): Remote[List[String]]
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def head: Remote[Char]
- def headOption: Remote[Option[Char]]
- def indexOf[X](value: Remote[X], from: Remote[Int])(implicit ev: RemoteTypeEither[X, Char, String]): Remote[Int]
- def indexOf[X](value: Remote[X])(implicit ev: RemoteTypeEither[X, Char, String]): Remote[Int]
- def indexWhere(p: (Remote[Char]) ⇒ Remote[Boolean], from: Remote[Int] = Remote(0)): Remote[Int]
- def init: Remote[String]
- def inits: Remote[List[String]]
- def intersect(other: Remote[String]): Remote[String]
- def isEmpty: Remote[Boolean]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def knownSize: Remote[Int]
- def last: Remote[Char]
- def lastIndexOf[X](value: Remote[X], from: Remote[Int])(implicit ev: RemoteTypeEither[X, Char, String]): Remote[Int]
- def lastIndexOf[X](value: Remote[X])(implicit ev: RemoteTypeEither[X, Char, String]): Remote[Int]
- def lastIndexWhere(p: (Remote[Char]) ⇒ Remote[Boolean], from: Remote[Int]): Remote[Int]
- def lastIndexWhere(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[Int]
- def lastOption: Remote[Option[Char]]
- def length: Remote[Int]
- def map(f: (Remote[Char]) ⇒ Remote[Char]): Remote[String]
- def mkString(start: Remote[String], sep: Remote[String], end: Remote[String]): Remote[String]
- def mkString(sep: Remote[String]): Remote[String]
- def mkString: Remote[String]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Remote[Boolean]
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def padTo(len: Remote[Int], elem: Remote[Char]): Remote[String]
- def partition(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[(String, String)]
- def partitionMap(p: (Remote[Char]) ⇒ Remote[Either[Char, Char]]): Remote[(String, String)]
- def patch(from: Remote[Int], other: Remote[String], replaced: Remote[Int]): Remote[String]
- def permutations: Remote[List[String]]
- def prepended(c: Remote[Char]): Remote[String]
- def prependedAll(prefix: Remote[String]): Remote[String]
- def r: Remote[Regex]
- def replace(oldChar: Remote[Char], newChar: Remote[Char]): Remote[String]
- def replaceAll(regex: Remote[String], replacement: Remote[String]): Remote[String]
- def replaceFirst(regex: Remote[String], replacement: Remote[String]): Remote[String]
- def reverse: Remote[String]
- def size: Remote[Int]
- def slice(from: Remote[Int], until: Remote[Int]): Remote[String]
- def sliding(size: Remote[Int], step: Remote[Int] = Remote(1)): Remote[List[String]]
- def span(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[(String, String)]
- def split[X](separators: Remote[X])(implicit ev: RemoteTypeEither[X, Char, List[Char]]): Remote[List[String]]
- def splitAt(n: Remote[Int]): Remote[(String, String)]
- def startsWith(prefix: Remote[String]): Remote[Boolean]
- def strip(): Remote[String]
- def stripLeading(): Remote[String]
- def stripLineEnd: Remote[String]
- def stripMargin(char: Remote[Char]): Remote[String]
- def stripPrefix(prefix: Remote[String]): Remote[String]
- def stripSuffix(suffix: Remote[String]): Remote[String]
- def stripTrailing(): Remote[String]
- def substring(begin: Remote[Int], end: Remote[Int]): Remote[String]
- def substring(begin: Remote[Int]): Remote[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def tail: Remote[String]
- def tails: Remote[List[String]]
- def take(n: Remote[Int]): Remote[String]
- def takeRight(n: Remote[Int]): Remote[String]
- def takeWhile(p: (Remote[Char]) ⇒ Remote[Boolean]): Remote[String]
- def toBase64: Remote[String]
- def toBoolean: Remote[Boolean]
- def toBooleanOption: Remote[Option[Boolean]]
- def toByte: Remote[Byte]
- def toByteOption: Remote[Option[Byte]]
- def toDouble: Remote[Double]
- def toDoubleOption: Remote[Option[Double]]
- def toFloat: Remote[Float]
- def toFloatOption: Remote[Option[Float]]
- def toInt: Remote[Int]
- def toIntOption: Remote[Option[Int]]
- def toList: Remote[List[Char]]
- def toLong: Remote[Long]
- def toLongOption: Remote[Option[Long]]
- def toLowerCase: Remote[String]
- def toShort: Remote[Short]
- def toShortOption: Remote[Option[Short]]
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def toUpperCase: Remote[String]
- def trim(): Remote[String]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()