All Downloads are FREE. Search and download functionalities are using the official Maven repository.

name.remal.arrays-generated.kt Maven / Gradle / Ivy

The newest version!
@file:name.remal.gradle_plugins.api.ExcludeFromCodeCoverage
@file:Suppress("UNUSED_PARAMETER", "NOTHING_TO_INLINE")
package name.remal

operator fun ByteArray.plus(other: ByteArray) = ArrayUtils.concat(this, *other)
operator fun ShortArray.plus(other: ShortArray) = ArrayUtils.concat(this, *other)
operator fun IntArray.plus(other: IntArray) = ArrayUtils.concat(this, *other)
operator fun LongArray.plus(other: LongArray) = ArrayUtils.concat(this, *other)
operator fun FloatArray.plus(other: FloatArray) = ArrayUtils.concat(this, *other)
operator fun DoubleArray.plus(other: DoubleArray) = ArrayUtils.concat(this, *other)
operator fun CharArray.plus(other: CharArray) = ArrayUtils.concat(this, *other)
operator fun BooleanArray.plus(other: BooleanArray) = ArrayUtils.concat(this, *other)
operator fun  Array.plus(other: Array): Array = ArrayUtils.concat(this, *other)

@JvmName("concatArray") fun ByteArray.concat(other: ByteArray) = ArrayUtils.concatArray(this, other)
fun ByteArray.concat(vararg other: Byte) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun ShortArray.concat(other: ShortArray) = ArrayUtils.concatArray(this, other)
fun ShortArray.concat(vararg other: Short) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun IntArray.concat(other: IntArray) = ArrayUtils.concatArray(this, other)
fun IntArray.concat(vararg other: Int) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun LongArray.concat(other: LongArray) = ArrayUtils.concatArray(this, other)
fun LongArray.concat(vararg other: Long) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun FloatArray.concat(other: FloatArray) = ArrayUtils.concatArray(this, other)
fun FloatArray.concat(vararg other: Float) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun DoubleArray.concat(other: DoubleArray) = ArrayUtils.concatArray(this, other)
fun DoubleArray.concat(vararg other: Double) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun CharArray.concat(other: CharArray) = ArrayUtils.concatArray(this, other)
fun CharArray.concat(vararg other: Char) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun BooleanArray.concat(other: BooleanArray) = ArrayUtils.concatArray(this, other)
fun BooleanArray.concat(vararg other: Boolean) = ArrayUtils.concat(this, *other)
@JvmName("concatArray") fun  Array.concat(other: Array): Array = ArrayUtils.concatArray(this, other)
fun  Array.concat(vararg other: O): Array = ArrayUtils.concat(this, *other)

@JvmName("startsWithArray") fun ByteArray.startsWith(other: ByteArray) = ArrayUtils.startsWithArray(this, other)
fun ByteArray.startsWith(vararg other: Byte) = ArrayUtils.startsWith(this, *other)
fun ByteArray.startsWith(other: Byte) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun ByteArray.endsWith(other: ByteArray) = ArrayUtils.endsWithArray(this, other)
fun ByteArray.endsWith(vararg other: Byte) = ArrayUtils.endsWith(this, *other)
fun ByteArray.endsWith(other: Byte) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun ByteArray.indexOf(other: ByteArray) = ArrayUtils.indexOfArray(this, other)
fun ByteArray.indexOf(vararg other: Byte) = ArrayUtils.indexOf(this, *other)
fun ByteArray.indexOf(other: Byte) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun ByteArray.contains(other: ByteArray) = ArrayUtils.containsArray(this, other)
fun ByteArray.contains(vararg other: Byte) = ArrayUtils.contains(this, *other)
fun ByteArray.contains(other: Byte) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun ShortArray.startsWith(other: ShortArray) = ArrayUtils.startsWithArray(this, other)
fun ShortArray.startsWith(vararg other: Short) = ArrayUtils.startsWith(this, *other)
fun ShortArray.startsWith(other: Short) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun ShortArray.endsWith(other: ShortArray) = ArrayUtils.endsWithArray(this, other)
fun ShortArray.endsWith(vararg other: Short) = ArrayUtils.endsWith(this, *other)
fun ShortArray.endsWith(other: Short) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun ShortArray.indexOf(other: ShortArray) = ArrayUtils.indexOfArray(this, other)
fun ShortArray.indexOf(vararg other: Short) = ArrayUtils.indexOf(this, *other)
fun ShortArray.indexOf(other: Short) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun ShortArray.contains(other: ShortArray) = ArrayUtils.containsArray(this, other)
fun ShortArray.contains(vararg other: Short) = ArrayUtils.contains(this, *other)
fun ShortArray.contains(other: Short) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun IntArray.startsWith(other: IntArray) = ArrayUtils.startsWithArray(this, other)
fun IntArray.startsWith(vararg other: Int) = ArrayUtils.startsWith(this, *other)
fun IntArray.startsWith(other: Int) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun IntArray.endsWith(other: IntArray) = ArrayUtils.endsWithArray(this, other)
fun IntArray.endsWith(vararg other: Int) = ArrayUtils.endsWith(this, *other)
fun IntArray.endsWith(other: Int) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun IntArray.indexOf(other: IntArray) = ArrayUtils.indexOfArray(this, other)
fun IntArray.indexOf(vararg other: Int) = ArrayUtils.indexOf(this, *other)
fun IntArray.indexOf(other: Int) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun IntArray.contains(other: IntArray) = ArrayUtils.containsArray(this, other)
fun IntArray.contains(vararg other: Int) = ArrayUtils.contains(this, *other)
fun IntArray.contains(other: Int) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun LongArray.startsWith(other: LongArray) = ArrayUtils.startsWithArray(this, other)
fun LongArray.startsWith(vararg other: Long) = ArrayUtils.startsWith(this, *other)
fun LongArray.startsWith(other: Long) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun LongArray.endsWith(other: LongArray) = ArrayUtils.endsWithArray(this, other)
fun LongArray.endsWith(vararg other: Long) = ArrayUtils.endsWith(this, *other)
fun LongArray.endsWith(other: Long) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun LongArray.indexOf(other: LongArray) = ArrayUtils.indexOfArray(this, other)
fun LongArray.indexOf(vararg other: Long) = ArrayUtils.indexOf(this, *other)
fun LongArray.indexOf(other: Long) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun LongArray.contains(other: LongArray) = ArrayUtils.containsArray(this, other)
fun LongArray.contains(vararg other: Long) = ArrayUtils.contains(this, *other)
fun LongArray.contains(other: Long) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun FloatArray.startsWith(other: FloatArray) = ArrayUtils.startsWithArray(this, other)
fun FloatArray.startsWith(vararg other: Float) = ArrayUtils.startsWith(this, *other)
fun FloatArray.startsWith(other: Float) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun FloatArray.endsWith(other: FloatArray) = ArrayUtils.endsWithArray(this, other)
fun FloatArray.endsWith(vararg other: Float) = ArrayUtils.endsWith(this, *other)
fun FloatArray.endsWith(other: Float) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun FloatArray.indexOf(other: FloatArray) = ArrayUtils.indexOfArray(this, other)
fun FloatArray.indexOf(vararg other: Float) = ArrayUtils.indexOf(this, *other)
fun FloatArray.indexOf(other: Float) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun FloatArray.contains(other: FloatArray) = ArrayUtils.containsArray(this, other)
fun FloatArray.contains(vararg other: Float) = ArrayUtils.contains(this, *other)
fun FloatArray.contains(other: Float) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun DoubleArray.startsWith(other: DoubleArray) = ArrayUtils.startsWithArray(this, other)
fun DoubleArray.startsWith(vararg other: Double) = ArrayUtils.startsWith(this, *other)
fun DoubleArray.startsWith(other: Double) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun DoubleArray.endsWith(other: DoubleArray) = ArrayUtils.endsWithArray(this, other)
fun DoubleArray.endsWith(vararg other: Double) = ArrayUtils.endsWith(this, *other)
fun DoubleArray.endsWith(other: Double) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun DoubleArray.indexOf(other: DoubleArray) = ArrayUtils.indexOfArray(this, other)
fun DoubleArray.indexOf(vararg other: Double) = ArrayUtils.indexOf(this, *other)
fun DoubleArray.indexOf(other: Double) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun DoubleArray.contains(other: DoubleArray) = ArrayUtils.containsArray(this, other)
fun DoubleArray.contains(vararg other: Double) = ArrayUtils.contains(this, *other)
fun DoubleArray.contains(other: Double) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun CharArray.startsWith(other: CharArray) = ArrayUtils.startsWithArray(this, other)
fun CharArray.startsWith(vararg other: Char) = ArrayUtils.startsWith(this, *other)
fun CharArray.startsWith(other: Char) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun CharArray.endsWith(other: CharArray) = ArrayUtils.endsWithArray(this, other)
fun CharArray.endsWith(vararg other: Char) = ArrayUtils.endsWith(this, *other)
fun CharArray.endsWith(other: Char) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun CharArray.indexOf(other: CharArray) = ArrayUtils.indexOfArray(this, other)
fun CharArray.indexOf(vararg other: Char) = ArrayUtils.indexOf(this, *other)
fun CharArray.indexOf(other: Char) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun CharArray.contains(other: CharArray) = ArrayUtils.containsArray(this, other)
fun CharArray.contains(vararg other: Char) = ArrayUtils.contains(this, *other)
fun CharArray.contains(other: Char) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun BooleanArray.startsWith(other: BooleanArray) = ArrayUtils.startsWithArray(this, other)
fun BooleanArray.startsWith(vararg other: Boolean) = ArrayUtils.startsWith(this, *other)
fun BooleanArray.startsWith(other: Boolean) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun BooleanArray.endsWith(other: BooleanArray) = ArrayUtils.endsWithArray(this, other)
fun BooleanArray.endsWith(vararg other: Boolean) = ArrayUtils.endsWith(this, *other)
fun BooleanArray.endsWith(other: Boolean) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun BooleanArray.indexOf(other: BooleanArray) = ArrayUtils.indexOfArray(this, other)
fun BooleanArray.indexOf(vararg other: Boolean) = ArrayUtils.indexOf(this, *other)
fun BooleanArray.indexOf(other: Boolean) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun BooleanArray.contains(other: BooleanArray) = ArrayUtils.containsArray(this, other)
fun BooleanArray.contains(vararg other: Boolean) = ArrayUtils.contains(this, *other)
fun BooleanArray.contains(other: Boolean) = ArrayUtils.contains(this, other)
@JvmName("startsWithArray") fun  Array.startsWith(other: Array) = ArrayUtils.startsWithArray(this, other)
fun  Array.startsWith(vararg other: O) = ArrayUtils.startsWith(this, *other)
fun  Array.startsWith(other: O) = ArrayUtils.startsWith(this, other)
@JvmName("endsWithArray") fun  Array.endsWith(other: Array) = ArrayUtils.endsWithArray(this, other)
fun  Array.endsWith(vararg other: O) = ArrayUtils.endsWith(this, *other)
fun  Array.endsWith(other: O) = ArrayUtils.endsWith(this, other)
@JvmName("indexOfArray") fun  Array.indexOf(other: Array) = ArrayUtils.indexOfArray(this, other)
fun  Array.indexOf(vararg other: O) = ArrayUtils.indexOf(this, *other)
fun  Array.indexOf(other: O) = ArrayUtils.indexOf(this, other)
@JvmName("containsArray") fun  Array.contains(other: Array) = ArrayUtils.containsArray(this, other)
fun  Array.contains(vararg other: O) = ArrayUtils.contains(this, *other)
fun  Array.contains(other: O) = ArrayUtils.contains(this, other)

fun ByteArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun ByteArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun ShortArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun IntArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun LongArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun FloatArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun DoubleArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun CharArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: ByteArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: ShortArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: IntArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: LongArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: FloatArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: DoubleArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: CharArray?) = ArrayUtils.arrayEquals(this, other)
fun BooleanArray?.arrayEquals(other: BooleanArray?) = ArrayUtils.arrayEquals(this, other)
fun Array<*>?.arrayEquals(other: Array<*>?) = ArrayUtils.arrayEquals(this, other)
fun Any?.arrayEquals(other: Any?) = ArrayUtils.arrayEquals(this, other)

fun ByteArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun ShortArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun IntArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun LongArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun FloatArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun DoubleArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun CharArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun BooleanArray?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun Array<*>?.arrayHashCode() = if (this == null) 0 else ArrayUtils.arrayHashCodeArray(this)
fun Any?.arrayHashCode() = ArrayUtils.arrayHashCode(this)

fun ByteArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun ShortArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun IntArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun LongArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun FloatArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun DoubleArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun CharArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun BooleanArray?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun Array<*>?.arrayToString() = if (this == null) "null" else ArrayUtils.arrayToStringArray(this)
fun Any?.arrayToString() = ArrayUtils.arrayToString(this)

fun ByteArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)
fun ShortArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)
fun IntArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)
fun LongArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)
fun FloatArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)
fun DoubleArray.toIntArray(): IntArray = PrimitiveArrayConverters.toIntArray(this)

fun ByteArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)
fun ShortArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)
fun IntArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)
fun LongArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)
fun FloatArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)
fun DoubleArray.toLongArray(): LongArray = PrimitiveArrayConverters.toLongArray(this)

fun ByteArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)
fun ShortArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)
fun IntArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)
fun LongArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)
fun FloatArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)
fun DoubleArray.toDoubleArray(): DoubleArray = PrimitiveArrayConverters.toDoubleArray(this)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy