Chlorie

Results 9 issues of Chlorie

Is the `DelayedScheduler` concept really implementable in C++20? The concept currently requires a `DelayedScheduler` to receive any type of duration as its parameter, but AFAIK this kind of "for all"...

I'm following the steps in the README file and after I run `cake.bat` it only outputs ``` Build succeeded. Build took 0:00:00.xxx. ``` and nothing else. No new files are...

The latest version of the asio library (standalone 1.19 / boost 1.77) now supports per-operation cancellation. Is it possible to integrate this mechanic into beast so that operation cancellation could...

Stale

Using group for overloads are reasonable, so something like this on [cppreference](https://en.cppreference.com/w/cpp/container/vector/insert) would be really helpful. ```cpp /// \group foo /// Foo some things. (generic docs for foo) /// \overload...

enhancement

```cpp namespace test { /// A List. /// 1. First. /// 1. Second void foo(); } ``` ````md ### Function `test::foo` ``` cpp void foo(); ``` A List. 1. First....

bug

Sometimes the cancellation routine would require some asynchronous operations, for example, acquisition of mutexes, sending close packets, etc. Since the stop callback must be synchronous, I was scheduling the "real"...

question

Thanks for the awesome library! Recently I'm interested in coroutines, and I'm fascinated about what this library could do with the senders/receivers concepts and coroutines. I've used cppcoro before and...

Hi! I'm really interested in your work, and tried to reproduce the results myself. Using the given code I can reproduce the reported IC/Rank IC scores, but I'm failing to...

https://github.com/microsoft/qlib/blob/98f569eed2252cc7fad0c120cad44f6181c3acf6/scripts/data_collector/cn_index/collector.py#L401-L408 `result` is overwritten with the call to `self.get_data_from_baostock(date)`, and that function contains exactly the same code as the lines above the overwrite. Might be an oversight during refactoring.