CValue

abstract class CValue<T : CVariable> : CValues<T>

The single immutable C value. It is self-contained and doesn't depend on native memory.

TODO: consider providing an adapter instead of subtyping CValues.

Constructors

Link copied to clipboard
fun CValue()

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun getPointer(scope: AutofreeScope): CPointer<T>

Copies the values to placement and returns the pointer to the copy.

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
abstract fun place(placement: CPointer<T>): CPointer<T>

Copy the referenced values to placement and return placement pointer.

Properties

Link copied to clipboard
abstract val align: Int
Link copied to clipboard
abstract val size: Int

Extensions

Link copied to clipboard
inline fun <T : CStructVar> CValue<T>.copy(modify: T.() -> Unit): CValue<T>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <T : CStructVar, R> CValue<T>.useContents(block: T.() -> R): R

Calls the block with temporary copy of this value as receiver.

Link copied to clipboard
fun <T : CVariable> CValue<T>.write(location: NativePtr)