Darrell Wright

Results 24 issues of Darrell Wright

Allow querying and returning a range of elements as either `json_value` or parsed. This could then be extended to returning a `vector` or `vector`.

Name of mapping : TBD Purpose: To provide a json_value like structure over the unmapped members in a class. Because we know the mapped members and their locations, that location_info...

Investigate allowing the parsing of submembers. e.g ```json { "a": { "b": 5 } } ``` The transformation would be potentially lossy Possible mapping syntax ```cpp json_submember ``` Where `"b"`...

Investigate adding optimized paths for arrays of number, bool, string. This should be doable as seen in other JSON libraries that SIMDify these things globally. But because we know what...

Provide a mechanism to output arrays 1 element at a time without creating an iterator. Maybe something like ```cpp auto hnd = daw::json::array_start( output_Iterator ); hnd.to_json( value0 ); hnd.to_json( value1...

``` File "/usr/local/Cellar/python/3.7.7/Frameworks/Python.framework/Versions/3.7/lib/python3.7/threading.py", line 926, in _bootstrap_inner self.run() File "/usr/local/Cellar/python/3.7.7/Frameworks/Python.framework/Versions/3.7/lib/python3.7/threading.py", line 870, in run self._target(*self._args, **self._kwargs) File "/usr/local/lib/python3.7/site-packages/co2meter/server.py", line 316, in init_homekit_target start_homekit(mon, host=host, port=port, monitoring=False, handle_sigint=False) File "/usr/local/lib/python3.7/site-packages/co2meter/homekit.py", line...

was getting errors ``` Undefined symbols for architecture x86_64: "_luaL_checklstring", referenced from: _lua_notify in lua.o _lua_notify_with_pid in lua.o "_luaL_checkversion_", referenced from: _luaopen_lua_libnotify in lua.o "_luaL_setfuncs", referenced from: _luaopen_lua_libnotify in lua.o...

This shows the Boost JSON in a better light and uses safer at( ) instead of operator[] that will insert if the member doesn't exist. At throws. It also uses...