Files
kotlin-fork/idea/testData/decompiler/builtIns/kotlin_package.text
T
Alexander Udalov 04026dbe84 Make Array<T>(size, init) a constructor of Array
It's not marked as inline, this is why 'crossinline' was added in
jaggedArray.kt/jaggedDeep.kt. Will be fixed in the following commits
2016-01-28 03:10:37 +03:00

32 lines
1.4 KiB
Plaintext
Vendored

// IntelliJ API Decompiler stub source generated from a class file
// Implementation of methods is not available
package kotlin
public inline fun <reified @kotlin.internal.PureReifiable T> arrayOf(vararg elements: T): kotlin.Array<T> { /* compiled code */ }
public fun <reified @kotlin.internal.PureReifiable T> arrayOfNulls(size: kotlin.Int): kotlin.Array<T?> { /* compiled code */ }
public fun booleanArrayOf(vararg elements: kotlin.Boolean): kotlin.BooleanArray { /* compiled code */ }
public fun byteArrayOf(vararg elements: kotlin.Byte): kotlin.ByteArray { /* compiled code */ }
public fun charArrayOf(vararg elements: kotlin.Char): kotlin.CharArray { /* compiled code */ }
public fun doubleArrayOf(vararg elements: kotlin.Double): kotlin.DoubleArray { /* compiled code */ }
public inline fun <reified @kotlin.internal.PureReifiable T> emptyArray(): kotlin.Array<T> { /* compiled code */ }
public fun floatArrayOf(vararg elements: kotlin.Float): kotlin.FloatArray { /* compiled code */ }
public fun intArrayOf(vararg elements: kotlin.Int): kotlin.IntArray { /* compiled code */ }
public fun longArrayOf(vararg elements: kotlin.Long): kotlin.LongArray { /* compiled code */ }
public fun shortArrayOf(vararg elements: kotlin.Short): kotlin.ShortArray { /* compiled code */ }
public operator fun kotlin.String?.plus(other: kotlin.Any?): kotlin.String { /* compiled code */ }
public fun kotlin.Any?.toString(): kotlin.String { /* compiled code */ }