Dmitry Arkhipov

Results 73 issues of Dmitry Arkhipov

Currently, in order to allow installation prefix to be substitutable one uses options. For example: ```jam import package ; package.install install myproject : : myapp : mylib ; ``` on...

transition

Fix #700 This implementation makes these choices: 1. Nulls are replaced when creating intermediaries. 2. When creating intermediaries segments are always treated as object keys, (that is only objects are...

Apparently C math constants are missing in C++ mode on some obscure platforms

Fix #187 Document choosing endianness via macros

The idea is this: 1. Fill the buffer up to capacity _at the end_ (needs a `revert_insert` protection). 2. Create a temporary buffer with the remaining elements (can throw). 3....

Performance

Currently: ```c++ friend bool operator==( value const& lhs, value const& rhs) noexcept { return lhs.equal(rhs); } ``` Thus, `jv == "some string"` is equivalent to `jv == value("some string")`, which...