Doğan Ulus
Doğan Ulus
Turkish `tr` and Azeri `az` languages distinguish dotted and dotless `i` and `I` in their typesetting. For the correct typesetting in these languages, we need to convert lowercase dotted `i`...
Currently trying out the new JSON pointer implementation and I think this would be very useful in many cases. One thing I have needed is inserting or assigning arbitrary JSON...
I would like to report an edge case that there is some dependency left between standalone Boost::JSON library and older Boost libraries. Below is a minimal example failing to compile...
Currently following equality checks evaluate to `true` for `json::value`. ```cpp BOOST_TEST(value(nullptr) == nullptr); BOOST_TEST(value(true) == true); BOOST_TEST(value(false) == false); BOOST_TEST(value(13) == 13); BOOST_TEST(value("abc") == "abc"); BOOST_TEST(value({1,2,3}) == array({1,2,3})); BOOST_TEST(value({{"a", 1},...
Currently some test cases use a helper `equal` function defined in `test/test.hpp` to check the equality between `json::value`s. https://github.com/boostorg/json/blob/ee8d72d8502b409b5561200299cad30ccdb91415/test/test.hpp#L971-L1054 Its behavior is inconsistent with the `operator==` of `json::value` as it...
It might be nice to add std::hash support for `boost::json` types to enable their use in associative containers as keys. Currently the library only provides std::hash support for `boost::json::string`. For...
I would like to start a discussion on having a class of `value_iterator`, which will be used to iterate over a `value` instance like visiting a tree in a depth-first...
I like to use the Hyperjump's bundle functionality like this one: https://libraries.io/npm/@skriptfabrik%2Fjson-schema-bundler Does the library currently support the command line interface?
## Description This PR adds a development container for Autoware documentation where Mkdocs requirements are automatically installed. ## Pre-review checklist for the PR author The PR author **must** check the...
Currently our attempts to build `whisper` on ARM-based computers fails. Apparently, this is due to the use of Intel-specific `emmintrin.h` library in the codebase as in the following: [#include ](https://github.com/chipsalliance/SweRV-ISS/blob/bd9ed972f91a97499940f166d45c1c55a010ec58/float.cpp#L21)...