class StringBuilder : Appendable, CharSequence
Platform and version requirements: JS
StringBuilder(capacity: Int) StringBuilder(content: CharSequence) StringBuilder(content: String = "") |
val length: Int Returns the length of this character sequence. |
fun append(c: Char): StringBuilder fun append(csq: CharSequence?): StringBuilder fun append( csq: CharSequence?, start: Int, end: Int ): StringBuilder fun append(obj: Any?): StringBuilder | |
fun get(index: Int): Char Returns the character at the specified index in this character sequence. | |
fun reverse(): StringBuilder | |
fun subSequence(start: Int, end: Int): CharSequence Returns a new character sequence that is a subsequence of this character sequence, starting at the specified startIndex and ending right before the specified endIndex. | |
fun toString(): String Returns a string representation of the object. |
fun CharSequence.all(predicate: (Char) -> Boolean): Boolean Returns | |
fun CharSequence.any(): Boolean Returns fun CharSequence.any(predicate: (Char) -> Boolean): Boolean Returns | |
fun StringBuilder.append( vararg value: String? ): StringBuilder fun StringBuilder.append(vararg value: Any?): StringBuilder Appends all arguments to the given StringBuilder. | |
fun CharSequence.asIterable(): Iterable<Char> Creates an Iterable instance that wraps the original char sequence returning its characters when being iterated. | |
fun CharSequence.asSequence(): Sequence<Char> Creates a Sequence instance that wraps the original char sequence returning its characters when being iterated. | |
fun <K, V> CharSequence.associate( transform: (Char) -> Pair<K, V> ): Map<K, V> Returns a Map containing key-value pairs provided by transform function applied to characters of the given char sequence. | |
fun <K> CharSequence.associateBy( keySelector: (Char) -> K ): Map<K, Char> Returns a Map containing the characters from the given char sequence indexed by the key returned from keySelector function applied to each character. fun <K, V> CharSequence.associateBy( keySelector: (Char) -> K, valueTransform: (Char) -> V ): Map<K, V> Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to characters of the given char sequence. | |
fun <K, M : MutableMap<in K, in Char>> CharSequence.associateByTo( destination: M, keySelector: (Char) -> K ): M Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each character of the given char sequence and value is the character itself. fun <K, V, M : MutableMap<in K, in V>> CharSequence.associateByTo( destination: M, keySelector: (Char) -> K, valueTransform: (Char) -> V ): M Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to characters of the given char sequence. | |
fun <K, V, M : MutableMap<in K, in V>> CharSequence.associateTo( destination: M, transform: (Char) -> Pair<K, V> ): M Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each character of the given char sequence. | |
fun CharSequence.commonPrefixWith( other: CharSequence, ignoreCase: Boolean = false ): String Returns the longest string | |
fun CharSequence.commonSuffixWith( other: CharSequence, ignoreCase: Boolean = false ): String Returns the longest string | |
operator fun CharSequence.contains( other: CharSequence, ignoreCase: Boolean = false ): Boolean Returns operator fun CharSequence.contains( char: Char, ignoreCase: Boolean = false ): Boolean Returns operator fun CharSequence.contains(regex: Regex): Boolean Returns | |
fun CharSequence.count(): Int Returns the length of this char sequence. fun CharSequence.count(predicate: (Char) -> Boolean): Int Returns the number of characters matching the given predicate. | |
fun CharSequence.drop(n: Int): CharSequence Returns a subsequence of this char sequence with the first n characters removed. | |
fun CharSequence.dropLast(n: Int): CharSequence Returns a subsequence of this char sequence with the last n characters removed. | |
fun CharSequence.dropLastWhile( predicate: (Char) -> Boolean ): CharSequence Returns a subsequence of this char sequence containing all characters except last characters that satisfy the given predicate. | |
fun CharSequence.dropWhile( predicate: (Char) -> Boolean ): CharSequence Returns a subsequence of this char sequence containing all characters except first characters that satisfy the given predicate. | |
fun CharSequence.elementAt(index: Int): Char Returns a character at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this char sequence. | |
fun CharSequence.elementAtOrElse( index: Int, defaultValue: (Int) -> Char ): Char Returns a character at the given index or the result of calling the defaultValue function if the index is out of bounds of this char sequence. | |
fun CharSequence.elementAtOrNull(index: Int): Char? Returns a character at the given index or | |
fun CharSequence.endsWith( char: Char, ignoreCase: Boolean = false ): Boolean Returns fun CharSequence.endsWith( suffix: CharSequence, ignoreCase: Boolean = false ): Boolean Returns | |
fun CharSequence.filter( predicate: (Char) -> Boolean ): CharSequence Returns a char sequence containing only those characters from the original char sequence that match the given predicate. | |
fun CharSequence.filterIndexed( predicate: (index: Int, Char) -> Boolean ): CharSequence Returns a char sequence containing only those characters from the original char sequence that match the given predicate. | |
fun <C : Appendable> CharSequence.filterIndexedTo( destination: C, predicate: (index: Int, Char) -> Boolean ): C Appends all characters matching the given predicate to the given destination. | |
fun CharSequence.filterNot( predicate: (Char) -> Boolean ): CharSequence Returns a char sequence containing only those characters from the original char sequence that do not match the given predicate. | |
fun <C : Appendable> CharSequence.filterNotTo( destination: C, predicate: (Char) -> Boolean ): C Appends all characters not matching the given predicate to the given destination. | |
fun <C : Appendable> CharSequence.filterTo( destination: C, predicate: (Char) -> Boolean ): C Appends all characters matching the given predicate to the given destination. | |
fun CharSequence.find(predicate: (Char) -> Boolean): Char? Returns the first character matching the given predicate, or | |
fun CharSequence.findAnyOf( strings: Collection<String>, startIndex: Int = 0, ignoreCase: Boolean = false ): Pair<Int, String>? Finds the first occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case. | |
fun CharSequence.findLast( predicate: (Char) -> Boolean ): Char? Returns the last character matching the given predicate, or | |
fun CharSequence.findLastAnyOf( strings: Collection<String>, startIndex: Int = lastIndex, ignoreCase: Boolean = false ): Pair<Int, String>? Finds the last occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case. | |
fun CharSequence.first(): Char Returns first character. fun CharSequence.first(predicate: (Char) -> Boolean): Char Returns the first character matching the given predicate. | |
fun CharSequence.firstOrNull(): Char? Returns the first character, or fun CharSequence.firstOrNull( predicate: (Char) -> Boolean ): Char? Returns the first character matching the given predicate, or | |
fun <R> CharSequence.flatMap( transform: (Char) -> Iterable<R> ): List<R> Returns a single list of all elements yielded from results of transform function being invoked on each character of original char sequence. | |
fun <R, C : MutableCollection<in R>> CharSequence.flatMapTo( destination: C, transform: (Char) -> Iterable<R> ): C Appends all elements yielded from results of transform function being invoked on each character of original char sequence, to the given destination. | |
fun <R> CharSequence.fold( initial: R, operation: (acc: R, Char) -> R ): R Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each character. | |
fun <R> CharSequence.foldIndexed( initial: R, operation: (index: Int, acc: R, Char) -> R ): R Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each character with its index in the original char sequence. | |
fun <R> CharSequence.foldRight( initial: R, operation: (Char, acc: R) -> R ): R Accumulates value starting with initial value and applying operation from right to left to each character and current accumulator value. | |
fun <R> CharSequence.foldRightIndexed( initial: R, operation: (index: Int, Char, acc: R) -> R ): R Accumulates value starting with initial value and applying operation from right to left to each character with its index in the original char sequence and current accumulator value. | |
fun CharSequence.forEach(action: (Char) -> Unit) Performs the given action on each character. | |
fun CharSequence.forEachIndexed( action: (index: Int, Char) -> Unit) Performs the given action on each character, providing sequential index with the character. | |
fun CharSequence.getOrElse( index: Int, defaultValue: (Int) -> Char ): Char Returns a character at the given index or the result of calling the defaultValue function if the index is out of bounds of this char sequence. | |
fun CharSequence.getOrNull(index: Int): Char? Returns a character at the given index or | |
fun <K> CharSequence.groupBy( keySelector: (Char) -> K ): Map<K, List<Char>> Groups characters of the original char sequence by the key returned by the given keySelector function applied to each character and returns a map where each group key is associated with a list of corresponding characters. fun <K, V> CharSequence.groupBy( keySelector: (Char) -> K, valueTransform: (Char) -> V ): Map<K, List<V>> Groups values returned by the valueTransform function applied to each character of the original char sequence by the key returned by the given keySelector function applied to the character and returns a map where each group key is associated with a list of corresponding values. | |
fun <K, M : MutableMap<in K, MutableList<Char>>> CharSequence.groupByTo( destination: M, keySelector: (Char) -> K ): M Groups characters of the original char sequence by the key returned by the given keySelector function applied to each character and puts to the destination map each group key associated with a list of corresponding characters. fun <K, V, M : MutableMap<in K, MutableList<V>>> CharSequence.groupByTo( destination: M, keySelector: (Char) -> K, valueTransform: (Char) -> V ): M Groups values returned by the valueTransform function applied to each character of the original char sequence by the key returned by the given keySelector function applied to the character and puts to the destination map each group key associated with a list of corresponding values. | |
fun <K> CharSequence.groupingBy( keySelector: (Char) -> K ): Grouping<Char, K> Creates a Grouping source from a char sequence to be used later with one of group-and-fold operations using the specified keySelector function to extract a key from each character. | |
fun CharSequence.hasSurrogatePairAt(index: Int): Boolean Returns | |
fun CharSequence.indexOf( char: Char, startIndex: Int = 0, ignoreCase: Boolean = false ): Int Returns the index within this string of the first occurrence of the specified character, starting from the specified startIndex. fun CharSequence.indexOf( string: String, startIndex: Int = 0, ignoreCase: Boolean = false ): Int Returns the index within this char sequence of the first occurrence of the specified string, starting from the specified startIndex. | |
fun CharSequence.indexOfAny( chars: CharArray, startIndex: Int = 0, ignoreCase: Boolean = false ): Int Finds the index of the first occurrence of any of the specified chars in this char sequence, starting from the specified startIndex and optionally ignoring the case. fun CharSequence.indexOfAny( strings: Collection<String>, startIndex: Int = 0, ignoreCase: Boolean = false ): Int Finds the index of the first occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case. | |
fun CharSequence.indexOfFirst( predicate: (Char) -> Boolean ): Int Returns index of the first character matching the given predicate, or -1 if the char sequence does not contain such character. | |
fun CharSequence.indexOfLast( predicate: (Char) -> Boolean ): Int Returns index of the last character matching the given predicate, or -1 if the char sequence does not contain such character. | |
fun CharSequence.isBlank(): Boolean Returns | |
fun CharSequence.isEmpty(): Boolean Returns | |
fun CharSequence.isNotBlank(): Boolean Returns | |
fun CharSequence.isNotEmpty(): Boolean Returns | |
fun CharSequence?.isNullOrBlank(): Boolean Returns | |
fun CharSequence?.isNullOrEmpty(): Boolean Returns | |
fun CharSequence.last(): Char Returns the last character. fun CharSequence.last(predicate: (Char) -> Boolean): Char Returns the last character matching the given predicate. | |
fun CharSequence.lastIndexOf( char: Char, startIndex: Int = lastIndex, ignoreCase: Boolean = false ): Int Returns the index within this char sequence of the last occurrence of the specified character, starting from the specified startIndex. fun CharSequence.lastIndexOf( string: String, startIndex: Int = lastIndex, ignoreCase: Boolean = false ): Int Returns the index within this char sequence of the last occurrence of the specified string, starting from the specified startIndex. | |
fun CharSequence.lastIndexOfAny( chars: CharArray, startIndex: Int = lastIndex, ignoreCase: Boolean = false ): Int Finds the index of the last occurrence of any of the specified chars in this char sequence, starting from the specified startIndex and optionally ignoring the case. fun CharSequence.lastIndexOfAny( strings: Collection<String>, startIndex: Int = lastIndex, ignoreCase: Boolean = false ): Int Finds the index of the last occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case. | |
fun CharSequence.lastOrNull(): Char? Returns the last character, or fun CharSequence.lastOrNull( predicate: (Char) -> Boolean ): Char? Returns the last character matching the given predicate, or | |
fun CharSequence.lineSequence(): Sequence<String> Splits this char sequence to a sequence of lines delimited by any of the following character sequences: CRLF, LF or CR. | |
fun CharSequence.lines(): List<String>
| |
fun <R> CharSequence.map(transform: (Char) -> R): List<R> Returns a list containing the results of applying the given transform function to each character in the original char sequence. | |
fun <R> CharSequence.mapIndexed( transform: (index: Int, Char) -> R ): List<R> Returns a list containing the results of applying the given transform function to each character and its index in the original char sequence. | |
fun <R : Any> CharSequence.mapIndexedNotNull( transform: (index: Int, Char) -> R? ): List<R> Returns a list containing only the non-null results of applying the given transform function to each character and its index in the original char sequence. | |
fun <R : Any, C : MutableCollection<in R>> CharSequence.mapIndexedNotNullTo( destination: C, transform: (index: Int, Char) -> R? ): C Applies the given transform function to each character and its index in the original char sequence and appends only the non-null results to the given destination. | |
fun <R, C : MutableCollection<in R>> CharSequence.mapIndexedTo( destination: C, transform: (index: Int, Char) -> R ): C Applies the given transform function to each character and its index in the original char sequence and appends the results to the given destination. | |
fun <R : Any> CharSequence.mapNotNull( transform: (Char) -> R? ): List<R> Returns a list containing only the non-null results of applying the given transform function to each character in the original char sequence. | |
fun <R : Any, C : MutableCollection<in R>> CharSequence.mapNotNullTo( destination: C, transform: (Char) -> R? ): C Applies the given transform function to each character in the original char sequence and appends only the non-null results to the given destination. | |
fun <R, C : MutableCollection<in R>> CharSequence.mapTo( destination: C, transform: (Char) -> R ): C Applies the given transform function to each character of the original char sequence and appends the results to the given destination. | |
infix fun CharSequence.matches(regex: Regex): Boolean Returns | |
fun CharSequence.max(): Char? Returns the largest character or | |
fun <R : Comparable<R>> CharSequence.maxBy( selector: (Char) -> R ): Char? Returns the first character yielding the largest value of the given function or | |
fun CharSequence.maxWith( comparator: Comparator<in Char> ): Char? Returns the first character having the largest value according to the provided comparator or | |
fun CharSequence.min(): Char? Returns the smallest character or | |
fun <R : Comparable<R>> CharSequence.minBy( selector: (Char) -> R ): Char? Returns the first character yielding the smallest value of the given function or | |
fun CharSequence.minWith( comparator: Comparator<in Char> ): Char? Returns the first character having the smallest value according to the provided comparator or | |
fun CharSequence.none(): Boolean Returns fun CharSequence.none(predicate: (Char) -> Boolean): Boolean Returns | |
fun CharSequence.padEnd( length: Int, padChar: Char = ' ' ): CharSequence Returns a char sequence with content of this char sequence padded at the end to the specified length with the specified character or space. | |
fun CharSequence.padStart( length: Int, padChar: Char = ' ' ): CharSequence Returns a char sequence with content of this char sequence padded at the beginning to the specified length with the specified character or space. | |
fun CharSequence.partition( predicate: (Char) -> Boolean ): Pair<CharSequence, CharSequence> Splits the original char sequence into pair of char sequences, where first char sequence contains characters for which predicate yielded | |
fun CharSequence.reduce( operation: (acc: Char, Char) -> Char ): Char Accumulates value starting with the first character and applying operation from left to right to current accumulator value and each character. | |
fun CharSequence.reduceIndexed( operation: (index: Int, acc: Char, Char) -> Char ): Char Accumulates value starting with the first character and applying operation from left to right to current accumulator value and each character with its index in the original char sequence. | |
fun CharSequence.reduceRight( operation: (Char, acc: Char) -> Char ): Char Accumulates value starting with last character and applying operation from right to left to each character and current accumulator value. | |
fun CharSequence.reduceRightIndexed( operation: (index: Int, Char, acc: Char) -> Char ): Char Accumulates value starting with last character and applying operation from right to left to each character with its index in the original char sequence and current accumulator value. | |
fun CharSequence.regionMatches( thisOffset: Int, other: CharSequence, otherOffset: Int, length: Int, ignoreCase: Boolean = false ): Boolean Returns | |
fun CharSequence.removePrefix( prefix: CharSequence ): CharSequence If this char sequence starts with the given prefix, returns a new char sequence with the prefix removed. Otherwise, returns a new char sequence with the same characters. | |
fun CharSequence.removeRange( startIndex: Int, endIndex: Int ): CharSequence Returns a char sequence with content of this char sequence where its part at the given range is removed. fun CharSequence.removeRange(range: IntRange): CharSequence Returns a char sequence with content of this char sequence where its part at the given range is removed. | |
fun CharSequence.removeSuffix( suffix: CharSequence ): CharSequence If this char sequence ends with the given suffix, returns a new char sequence with the suffix removed. Otherwise, returns a new char sequence with the same characters. | |
fun CharSequence.removeSurrounding( prefix: CharSequence, suffix: CharSequence ): CharSequence When this char sequence starts with the given prefix and ends with the given suffix, returns a new char sequence having both the given prefix and suffix removed. Otherwise returns a new char sequence with the same characters. fun CharSequence.removeSurrounding( delimiter: CharSequence ): CharSequence When this char sequence starts with and ends with the given delimiter, returns a new char sequence having this delimiter removed both from the start and end. Otherwise returns a new char sequence with the same characters. | |
fun CharSequence.repeat(n: Int): String Returns a string containing this char sequence repeated n times. | |
fun CharSequence.replace( regex: Regex, replacement: String ): String Returns a new string obtained by replacing each substring of this char sequence that matches the given regular expression with the given replacement. fun CharSequence.replace( regex: Regex, transform: (MatchResult) -> CharSequence ): String Returns a new string obtained by replacing each substring of this char sequence that matches the given regular expression with the result of the given function transform that takes MatchResult and returns a string to be used as a replacement for that match. | |
fun CharSequence.replaceFirst( regex: Regex, replacement: String ): String Replaces the first occurrence of the given regular expression regex in this char sequence with specified replacement expression. | |
fun CharSequence.replaceRange( startIndex: Int, endIndex: Int, replacement: CharSequence ): CharSequence Returns a char sequence with content of this char sequence where its part at the given range is replaced with the replacement char sequence. fun CharSequence.replaceRange( range: IntRange, replacement: CharSequence ): CharSequence Returns a char sequence with content of this char sequence where its part at the given range is replaced with the replacement char sequence. | |
fun CharSequence.reversed(): CharSequence Returns a char sequence with characters in reversed order. | |
fun CharSequence.single(): Char Returns the single character, or throws an exception if the char sequence is empty or has more than one character. fun CharSequence.single(predicate: (Char) -> Boolean): Char Returns the single character matching the given predicate, or throws exception if there is no or more than one matching character. | |
fun CharSequence.singleOrNull(): Char? Returns single character, or fun CharSequence.singleOrNull( predicate: (Char) -> Boolean ): Char? Returns the single character matching the given predicate, or | |
fun CharSequence.slice(indices: IntRange): CharSequence Returns a char sequence containing characters of the original char sequence at the specified range of indices. fun CharSequence.slice(indices: Iterable<Int>): CharSequence Returns a char sequence containing characters of the original char sequence at specified indices. | |
fun CharSequence.split( vararg delimiters: String, ignoreCase: Boolean = false, limit: Int = 0 ): List<String> fun CharSequence.split( vararg delimiters: Char, ignoreCase: Boolean = false, limit: Int = 0 ): List<String> Splits this char sequence to a list of strings around occurrences of the specified delimiters. fun CharSequence.split( regex: Regex, limit: Int = 0 ): List<String> Splits this char sequence around matches of the given regular expression. | |
fun CharSequence.splitToSequence( vararg delimiters: String, ignoreCase: Boolean = false, limit: Int = 0 ): Sequence<String> fun CharSequence.splitToSequence( vararg delimiters: Char, ignoreCase: Boolean = false, limit: Int = 0 ): Sequence<String> Splits this char sequence to a sequence of strings around occurrences of the specified delimiters. | |
fun CharSequence.startsWith( char: Char, ignoreCase: Boolean = false ): Boolean Returns fun CharSequence.startsWith( prefix: CharSequence, ignoreCase: Boolean = false ): Boolean Returns fun CharSequence.startsWith( prefix: CharSequence, startIndex: Int, ignoreCase: Boolean = false ): Boolean Returns | |
fun CharSequence.subSequence(range: IntRange): CharSequence Returns a subsequence of this char sequence specified by the given range of indices. | |
fun CharSequence.substring( startIndex: Int, endIndex: Int = length ): String Returns a substring of chars from a range of this char sequence starting at the startIndex and ending right before the endIndex. fun CharSequence.substring(range: IntRange): String Returns a substring of chars at indices from the specified range of this char sequence. | |
fun CharSequence.sumBy(selector: (Char) -> Int): Int Returns the sum of all values produced by selector function applied to each character in the char sequence. | |
fun CharSequence.sumByDouble( selector: (Char) -> Double ): Double Returns the sum of all values produced by selector function applied to each character in the char sequence. | |
fun CharSequence.take(n: Int): CharSequence Returns a subsequence of this char sequence containing the first n characters from this char sequence, or the entire char sequence if this char sequence is shorter. | |
fun CharSequence.takeLast(n: Int): CharSequence Returns a subsequence of this char sequence containing the last n characters from this char sequence, or the entire char sequence if this char sequence is shorter. | |
fun CharSequence.takeLastWhile( predicate: (Char) -> Boolean ): CharSequence Returns a subsequence of this char sequence containing last characters that satisfy the given predicate. | |
fun CharSequence.takeWhile( predicate: (Char) -> Boolean ): CharSequence Returns a subsequence of this char sequence containing the first characters that satisfy the given predicate. | |
fun <C : MutableCollection<in Char>> CharSequence.toCollection( destination: C ): C Appends all characters to the given destination collection. | |
fun CharSequence.toHashSet(): HashSet<Char> Returns a HashSet of all characters. | |
fun CharSequence.toList(): List<Char> Returns a List containing all characters. | |
fun CharSequence.toMutableList(): MutableList<Char> Returns a MutableList filled with all characters of this char sequence. | |
fun CharSequence.toSet(): Set<Char> Returns a Set of all characters. | |
fun CharSequence.trim( predicate: (Char) -> Boolean ): CharSequence Returns a sub sequence of this char sequence having leading and trailing characters matching the predicate trimmed. fun CharSequence.trim(vararg chars: Char): CharSequence Returns a sub sequence of this char sequence having leading and trailing characters from the chars array trimmed. fun CharSequence.trim(): CharSequence Returns a sub sequence of this char sequence having leading and trailing whitespace trimmed. | |
fun CharSequence.trimEnd( predicate: (Char) -> Boolean ): CharSequence Returns a sub sequence of this char sequence having trailing characters matching the predicate trimmed. fun CharSequence.trimEnd(vararg chars: Char): CharSequence Returns a sub sequence of this char sequence having trailing characters from the chars array trimmed. fun CharSequence.trimEnd(): CharSequence Returns a sub sequence of this char sequence having trailing whitespace removed. | |
fun CharSequence.trimStart( predicate: (Char) -> Boolean ): CharSequence Returns a sub sequence of this char sequence having leading characters matching the predicate trimmed. fun CharSequence.trimStart(vararg chars: Char): CharSequence Returns a sub sequence of this char sequence having leading and trailing characters from the chars array trimmed. fun CharSequence.trimStart(): CharSequence Returns a sub sequence of this char sequence having leading whitespace removed. | |
fun CharSequence.withIndex(): Iterable<IndexedValue<Char>> Returns a lazy Iterable of IndexedValue for each character of the original char sequence. | |
infix fun CharSequence.zip( other: CharSequence ): List<Pair<Char, Char>> Returns a list of pairs built from characters of both char sequences with same indexes. List has length of shortest char sequence. fun <V> CharSequence.zip( other: CharSequence, transform: (a: Char, b: Char) -> V ): List<V> Returns a list of values built from characters of both char sequences with same indexes using provided transform. List has length of shortest char sequence. |
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-string-builder/