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§
None
No value.
Some(unsafe extern "C" fn(*mut __GdextType, i64) -> *mut __GdextString)
Some value of type T.