Do not generate headers for JS-only functions.
This commit is contained in:
@@ -7721,43 +7721,3 @@ public header fun BooleanArray.toTypedArray(): Array<Boolean>
|
||||
*/
|
||||
public header fun CharArray.toTypedArray(): Array<Char>
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun <T> Array<out T>.sort(noinline comparison: (T, T) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun ByteArray.sort(noinline comparison: (Byte, Byte) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun ShortArray.sort(noinline comparison: (Short, Short) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun IntArray.sort(noinline comparison: (Int, Int) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun LongArray.sort(noinline comparison: (Long, Long) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun FloatArray.sort(noinline comparison: (Float, Float) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun DoubleArray.sort(noinline comparison: (Double, Double) -> Int): Unit
|
||||
|
||||
/**
|
||||
* Sorts the array in-place according to the order specified by the given [comparison] function.
|
||||
*/
|
||||
public header inline fun CharArray.sort(noinline comparison: (Char, Char) -> Int): Unit
|
||||
|
||||
|
||||
Reference in New Issue
Block a user