GDExtensionInterfacePackedStringArrayOperatorIndex

Type Alias GDExtensionInterfacePackedStringArrayOperatorIndex 

Source
pub type GDExtensionInterfacePackedStringArrayOperatorIndex = Option<unsafe extern "C" fn(p_self: GDExtensionTypePtr, p_index: GDExtensionInt) -> GDExtensionStringPtr>;
Expand description

@name packed_string_array_operator_index @since 4.1

Gets a pointer to a string in a PackedStringArray.

@param p_self A pointer to a PackedStringArray object. @param p_index The index of the String to get.

@return A pointer to the requested String.

Aliased Type§

pub enum GDExtensionInterfacePackedStringArrayOperatorIndex {
    None,
    Some(unsafe extern "C" fn(*mut __GdextType, i64) -> *mut __GdextString),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut __GdextType, i64) -> *mut __GdextString)

Some value of type T.