Temporary revert moving CharSequence.charAt because of markdown parser
This commit is contained in:
committed by
Mikhail Glukhikh
parent
9e052372e6
commit
ed5ba01e85
@@ -30,9 +30,6 @@ public fun <K, V> Map.Entry<K, V>.getKey(): K = key
|
|||||||
@Deprecated("Use property 'value' instead", ReplaceWith("this.value"))
|
@Deprecated("Use property 'value' instead", ReplaceWith("this.value"))
|
||||||
public fun <K, V> Map.Entry<K, V>.getValue(): V = value
|
public fun <K, V> Map.Entry<K, V>.getValue(): V = value
|
||||||
|
|
||||||
@Deprecated("Use operator 'get' instead", ReplaceWith("this[index]"))
|
|
||||||
public fun CharSequence.charAt(index: Int): Char = this[index]
|
|
||||||
|
|
||||||
@Deprecated("Use 'removeAt' instead", ReplaceWith("this.removeAt(index)"))
|
@Deprecated("Use 'removeAt' instead", ReplaceWith("this.removeAt(index)"))
|
||||||
public fun <E> MutableList<E>.remove(index: Int): E = removeAt(index)
|
public fun <E> MutableList<E>.remove(index: Int): E = removeAt(index)
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
package kotlin
|
package kotlin
|
||||||
|
|
||||||
|
@Deprecated("Use operator 'get' instead", ReplaceWith("this[index]"))
|
||||||
|
public fun CharSequence.charAt(index: Int): Char = this[index]
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds the specified [element] to this mutable collection.
|
* Adds the specified [element] to this mutable collection.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user