GDExtensionInterfaceStringOperatorIndex typedef

GDExtensionInterfaceStringOperatorIndex = Pointer<NativeFunction<GDExtensionInterfaceStringOperatorIndexFunction>>

@name string_operator_index @since 4.1

Gets a pointer to the character at the given index from a String.

@param p_self A pointer to the String. @param p_index The index.

@return A pointer to the requested character.

Implementation

typedef GDExtensionInterfaceStringOperatorIndex =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceStringOperatorIndexFunction>
    >;