Temporary revert moving CharSequence.charAt because of markdown parser

This commit is contained in:
Denis Zharkov
2015-10-14 11:45:17 +03:00
committed by Mikhail Glukhikh
parent 9e052372e6
commit ed5ba01e85
2 changed files with 3 additions and 3 deletions
@@ -30,9 +30,6 @@ public fun <K, V> Map.Entry<K, V>.getKey(): K = key
@Deprecated("Use property 'value' instead", ReplaceWith("this.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)"))
public fun <E> MutableList<E>.remove(index: Int): E = removeAt(index)
@@ -3,6 +3,9 @@
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.
*/