-
https://qiu-weidong.github.io/2022/04/24/cpp11/
C++11中引入了λ表达式,它可以用来定义一个内联(inline)的函数,作为一个本地的对象或者一个参数。有了λ表达式,我们可以很方便的使用stl标准库。 λ表达式的构成 [...](...) mutable throwSpec -> returnType {...} 中括号…
-
Hi!
I have a work in progress that I am writing in a more "pure" C++ grammar: https://github.com/pachadotdev/fixest2/tree/cpp11_wip
My idea is to eventually create something like Apache Arrow, where…
-
SIOClient::connect(std::string uri) returns a pointer to a "global" client by calling SIOClientRegistry::instance()->getClient(fullpath). If a client to a specific URI already exists, SIOClient::conne…
-
Apparently FFMpeg 4.4.4 compatibility has been broken in 3.0.3?
```
:info:build [ 15%] Building CXX object src/plugins/server/CMakeFiles/server.dir/HttpServer.cpp.o
:info:build cd /opt/local/var/ma…
-
I tried the mbed client example and exported it into keil. This project can be compiled in yotta but failed in Keil. The error is about the new C++11 feature "=delete" in the code committed in "core-u…
-
If we want to make changes to the API when the package is on CRAN it would be painful - but if we version the headers based on API, for cran releases, we could help with that. Alternatively we could s…
-
Reading through the code here, I noted the following implementation of `LightweightSemaphore::tryWait()`:
https://github.com/preshing/cpp11-on-multicore/blob/41ac9c73dfa32e2fbc0af6668358092fafdfcae…
-
-
Would it be possible to have something that reports progress from `copy_files()` which calls CopyFiles from FileSystem? When copying huge files, the R session just hangs and the user doesn't know if …
-
Hmmm.... it looks like the answer is "sort of." The following works, but isn't totally type-safe. We could probably do a more general solution in the future. Issue?
```
#include "Rcpp.h"
enum …