
name.remal.arrays-generated.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-kotlin Show documentation
Show all versions of common-kotlin Show documentation
Java & Kotlin tools: common-kotlin
The newest version!
@file:Suppress("UNUSED_PARAMETER", "NOTHING_TO_INLINE")
package name.remal
operator fun ByteArray.plus(other: ByteArray) = ArrayUtils.concat(this, other)
operator fun ByteArray.plus(other: Byte) = ArrayUtils.concat(this, other)
operator fun Byte.plus(other: ByteArray) = ArrayUtils.concat(this, other)
operator fun ShortArray.plus(other: ShortArray) = ArrayUtils.concat(this, other)
operator fun ShortArray.plus(other: Short) = ArrayUtils.concat(this, other)
operator fun Short.plus(other: ShortArray) = ArrayUtils.concat(this, other)
operator fun IntArray.plus(other: IntArray) = ArrayUtils.concat(this, other)
operator fun IntArray.plus(other: Int) = ArrayUtils.concat(this, other)
operator fun Int.plus(other: IntArray) = ArrayUtils.concat(this, other)
operator fun LongArray.plus(other: LongArray) = ArrayUtils.concat(this, other)
operator fun LongArray.plus(other: Long) = ArrayUtils.concat(this, other)
operator fun Long.plus(other: LongArray) = ArrayUtils.concat(this, other)
operator fun FloatArray.plus(other: FloatArray) = ArrayUtils.concat(this, other)
operator fun FloatArray.plus(other: Float) = ArrayUtils.concat(this, other)
operator fun Float.plus(other: FloatArray) = ArrayUtils.concat(this, other)
operator fun DoubleArray.plus(other: DoubleArray) = ArrayUtils.concat(this, other)
operator fun DoubleArray.plus(other: Double) = ArrayUtils.concat(this, other)
operator fun Double.plus(other: DoubleArray) = ArrayUtils.concat(this, other)
operator fun CharArray.plus(other: CharArray) = ArrayUtils.concat(this, other)
operator fun CharArray.plus(other: Char) = ArrayUtils.concat(this, other)
operator fun Char.plus(other: CharArray) = ArrayUtils.concat(this, other)
operator fun BooleanArray.plus(other: BooleanArray) = ArrayUtils.concat(this, other)
operator fun BooleanArray.plus(other: Boolean) = ArrayUtils.concat(this, other)
operator fun Boolean.plus(other: BooleanArray) = ArrayUtils.concat(this, other)
operator fun Array.plus(other: Array): Array = ArrayUtils.concat(this, other)
operator fun Array.plus(other: T): Array = ArrayUtils.concat(this, other)
operator fun T.plus(other: Array): Array = ArrayUtils.concat(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() = ArrayUtils.arrayHashCode(this)
fun ShortArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun IntArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun LongArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun FloatArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun DoubleArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun CharArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun BooleanArray?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun Array<*>?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun Any?.arrayHashCode() = ArrayUtils.arrayHashCode(this)
fun ByteArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun ShortArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun IntArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun LongArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun FloatArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun DoubleArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun CharArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun BooleanArray?.arrayToString() = ArrayUtils.arrayToString(this)
fun Array<*>?.arrayToString() = ArrayUtils.arrayToString(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