Thread
Stories related to "jank is C++" across the full archive.
Abstract: "Test coverage is often measured by the number of source lines of code that is executed
by tests. However, compilers can apply transformations to the code to optimize the performance or size of a program. These transformations can remove parts of the original
code, but they can also add ...
I stumbled across this CppCon talk and found it interesting. The Ewig text editor example with concurrent loading and editing is impressive. The code seems clean.
There is a lucid exposition of Relaxed Radix Balanced Trees (RRB trees) in the video.
Although I lost the plot with C++ around C+...
Abstract: "Olmar is a branch of the Elsa C++ parser that adds the ability to marshal the abstract syntax tree of any C or C++ input as Ocaml variant type to the disk. The marshaled abstract syntax tree can later be processed with a pure Ocaml program. Alternatively additional Ocaml code could also b...
Additional details from author [here](http://lists.llvm.org/pipermail/cfe-dev/2015-May/043155.html).
Abstract: "The dynamic cast operation allows flexibility in the design and use of data management facilities in object-oriented programs. Dynamic cast has an important role in the implementation of the
Data Management Services (DMS) of the Mission Data System Project (MDS), the Jet Propulsion
Labo...