mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 13:48:40 +01:00
new API functions for maps: wrenSetSlotNewMap wrenGetMapCount wrenGetMapContainsKey wrenGetMapValue wrenSetMapValue wrenRemoveMapValue
6 lines
159 B
C
6 lines
159 B
C
#include "wren.h"
|
|
|
|
WrenForeignMethodFn mapsBindMethod(const char* signature);
|
|
void mapBindClass(
|
|
const char* className, WrenForeignClassMethods* methods);
|