We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 574d7ab commit 1d8afd1Copy full SHA for 1d8afd1
README.md
@@ -47,11 +47,13 @@ for(new i = 0; i < json_array_length(stringJson, "arrayWithObject"); i++) {
47
48
# 🚀 Natives
49
```pawn
50
-json_string(const jsonStr[], const key[], value[], const size = sizeof(value))
51
-json_int(const jsonStr[], const key[], &value)
52
-json_float(const jsonStr[], const key[], &Float:value)
53
-json_array_length(const jsonStr[], const key[])
54
-json_array_get(const jsonStr[], const key[], index, value[], const size = sizeof(value))
+bool:json_has_key(const jsonStr[], const key[]);
+bool:json_string(const jsonStr[], const key[], value[], const size = sizeof(value))
+bool:json_int(const jsonStr[], const key[], &value)
+bool:json_float(const jsonStr[], const key[], &Float:value)
+bool:json_bool(const jsonStr[], const key[], &:value)
55
+bool:json_array_length(const jsonStr[], const key[])
56
+bool:json_array_get(const jsonStr[], const key[], index, value[], const size = sizeof(value))
57
```
58
59
# 🤍 Thanks
0 commit comments