cValuesOf

Native
1.3
fun cValuesOf(vararg elements: Byte): CValues<ByteVar>
(source)

Returns sequence of immutable values CValues to pass them to C code.

Native
1.3
fun cValuesOf(vararg elements: Short): CValues<ShortVar>
(source)
fun cValuesOf(vararg elements: Int): CValues<IntVar>
(source)
fun cValuesOf(vararg elements: Long): CValues<LongVar>
(source)
fun cValuesOf(vararg elements: Float): CValues<FloatVar>
(source)
fun cValuesOf(vararg elements: Double): CValues<DoubleVar>
(source)
fun <T : CPointed> cValuesOf(
    vararg elements: CPointer<T>?
): CValues<CPointerVar<T>>

(source)
fun cValuesOf(vararg elements: UByte): CValues<UByteVar>
(source)
fun cValuesOf(vararg elements: UShort): CValues<UShortVar>
(source)
fun cValuesOf(vararg elements: UInt): CValues<UIntVar>
(source)
fun cValuesOf(vararg elements: ULong): CValues<ULongVar>
(source)