Andrey Upadyshev

Results 20 issues of Andrey Upadyshev

Currently, `mp_for_each` invokes `f` with `T()`. This adds a default-constructible requirement for type `T` which is not always feasible and also not very consistent with other parts of mp11 that...

In my code when I glue together boost.hana and boost.mp11 kind of MPLs I use my own `make_mp_identity` function defined as following: ```cpp template inline constexpr mp_identity make_mp_identity(T) noexcept {...

Currently, `azmq::message` move ctor/assignment implements the equivalent of `zmq_msg_move()`. This is not error prone against future changes in ZMQ. I propose to simply call `zmq_msg_move()` instead. Btw, current implementation of...

Some `azmq::message` constructors accept const buffer and some accept mutable buffer (i.e. can not be used to construct from const buffer). The accessors of `message` are const except one (non-const...

I propose to rename `azmq::message`'s `string()` function into `to_string()`. This approach consistent with STL naming (check `bitset` and `string_view` classes for example).

There are few places where flag `ZMQ_RCVMORE` is passed to function `zmq_msg_recv` where it should has no meaning (see http://api.zeromq.org/4-0:zmq-msg-send). It's a bit confusing and I propose to remove this.

**Is your feature request related to a problem? Please describe.** I'm aggregating metrics on the client into a histogram and I want to store this aggregated data in TimescaleDB and...

feature-request

Before the last update of RapidJSON, it was placed under `cereal::rapidjson` namespace to avoid collisions with other versions of RapidJSON in the same binary, which was very handy. Unfortunately, it's...

python-socketio library sets its own signal handler in a way that disables signals handlers that were previously set with `asyncio.loop.add_signal_handler` **To Reproduce** ```python import asyncio import signal import socketio URL...

invalid

Allow up to 6 levels of headers in the table of content and allow to ignore h1 header Any number of levels is supported but since the official HTML supports...