Static Methodsstatic fun sourcefromChars(chars: readonly Array<Char>): Stringstatic fun sourcefromUtf8(bytes: readonly Array<UInt8>): Stringstatic fun sourcetabulate(size: Int, f: (Int) -> Char): StringMethodsfun sourcelength(): Intfun sourcesub(start: Int, len: Int): Stringfun sourceinspect(): Inspectfun sourcesubstring(start: Int): Stringfrozen fun sourcestartsWith(prefix: String): Boolfrozen fun sourceendsWith(suffix: String): Boolfun sourcestripPrefix(prefix: String): Stringfun sourcestripSuffix(suffix: String): Stringfun sourceget(x: Int): Charfun source+<T: readonly Show>(s: T): Stringfun sourcerepeat(count: Int): Stringfun sourceisEmpty(): Boolfun sourceeach(f: (Char) -> Void): Voidfun sourcefoldl<Taccum>(f: (Taccum, Char) -> Taccum, accum: Taccum): Taccumfun sourcetoIntOption(): Option<Int>fun sourcetoInt(): Intfun sourceisIntish(): Boolfun sourcetoFloatOption(): Option<Float>fun sourcetoFloat(): Floatfun sourcetrimLeft(): Stringfun sourcetrimRight(): Stringfun sourcetrim(): Stringfun sourcesearch(offset: Int, f: (Char) -> Bool): Option<Int>fun sourcesearchIndex(offset: Int, f: (Char) -> Bool): Intfun sourcersearch(offset: Int, f: (Char) -> Bool): Option<Int>fun sourcechars(): Vector<Char>fun sourcesplitLast(substring: String): (String, String)fun sourcecontains(search: String): Boolfun sourcereplace(search: String, replacement: String): Stringfun sourcesplit(delimiter: String): Vector<String>fun sourcejoin<TS: readonly Show, T: readonly Sequence<TS>>(pieces: T): Stringfun sourcepadLeft(width: Int, chr: Char): Stringfun sourcepadRight(width: Int, chr: Char): Stringfun source==(other: String): Boolfun source!=(other: String): Boolfun source<(other: String): Boolfun source>(other: String): Boolfun source<=(other: String): Boolfun source>=(other: String): Boolfun sourcecompare(other: String): Orderfun sourcetoString(): Stringfun sourcehash(): Intfun sourcegetIter(): mutable String.StringIteratorfun sourcevalues(): mutable String.StringIteratorfun sourceuppercase(): Stringfun sourcelowercase(): Stringfun sourceuppercaseFirst(): Stringfun sourcelowercaseFirst(): StringInherited Methodsstatic fun sourcegenerator(): QuickCheck.Generator<String>fun sourceutf8(): IndexedSequence<UInt8>fun sourcematches(regex: Regex): Boolfun sourcematch(regex: Regex): Option<Regex.Match>fun sourcematchAll(regex: Regex): mutable Iterator<Regex.Match>fun sourcereplaceRegex(regex: Regex, callback: (Regex.Match) -> String): Stringfun sourcesplitRegex(regex: Regex): mutable Iterator<String>fun sourceshrink(firstShrink: Bool): mutable Iterator<String>