Krzysztof Gabis

Results 2 issues of Krzysztof Gabis

Hi, I'm considering prefixing builtins with ```std:```: prefix, so instead of ```len``` and ```array``` one would write ```std::len``` and ```std::array```. Why? Because there's a lot of keywords used up by...

enhancement

Example: ``` c /* Initialising object with an array of strings */ JSON_Value *val = json_value_init_object(); JSON_Object *obj = json_object(val); json_object_dotset_string(obj, "array[0]", "item0"); json_object_dotset_string(obj, "array[1]", "item1"); json_object_dotset_string(obj, "array[3]", "item3"); /*...

enhancement