GDExtensionInterfaceStringOperatorIndexConst typedef

GDExtensionInterfaceStringOperatorIndexConst = Pointer<NativeFunction<GDExtensionInterfaceStringOperatorIndexConstFunction>>

@name string_operator_index_const @since 4.1

Gets a const 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 const pointer to the requested character.

Implementation

typedef GDExtensionInterfaceStringOperatorIndexConst =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceStringOperatorIndexConstFunction>
    >;