pub type GDExtensionInterfaceArrayOperatorIndexConst = Option<unsafe extern "C" fn(p_self: GDExtensionConstTypePtr, p_index: GDExtensionInt) -> GDExtensionVariantPtr>;Expand description
@name array_operator_index_const @since 4.1
Gets a const pointer to a Variant in an Array.
@param p_self A const pointer to an Array object. @param p_index The index of the Variant to get.
@return A const pointer to the requested Variant.
Aliased Type§
pub enum GDExtensionInterfaceArrayOperatorIndexConst {
None,
Some(unsafe extern "C" fn(*const __GdextType, i64) -> *mut __GdextVariant),
}Variants§
None
No value.
Some(unsafe extern "C" fn(*const __GdextType, i64) -> *mut __GdextVariant)
Some value of type T.