alloc

inline fun <T : CVariable> NativePlacement.alloc(): T

Allocates variable of given type.

Parameters

T

must not be abstract


inline fun <T : CVariable> NativePlacement.alloc(initialize: T.() -> Unit): T

Allocates variable of given type and initializes it applying given block.

Parameters

T

must not be abstract