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