C++ in spacemacs
Two new emacs packages, ‘lsp-mode’ and ‘dap-mode’, have brought the power of Microsoft’s Language Server Protocol and Debug Adapter Protocol to emacs.
Notes on C++, Linux and other topics
Two new emacs packages, ‘lsp-mode’ and ‘dap-mode’, have brought the power of Microsoft’s Language Server Protocol and Debug Adapter Protocol to emacs.
I recently wrote a blog post about embedding python in C++ with boost::python.
We have a low-latency C++ trading framework which allows us to deploy various trading strategies relatively easily.
Introduced under proposal n3921, string_view
gives us the ability to refer to an existing string in a non-owning way.
Introduced under proposal P00305r0, If statement with initializer
give us the ability to initialize a variable within an if
statement, and then, once initialized, perform the actual conditional check.
Introduced under proposal http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0144r0.pdf, Structured Bindings
give us the ability to declare multiple variables initialised from a tuple
or struct
.