ACashwith chandrainsigsegv.hashnode.dev00Building a type-safe Parser Combinator Library in Modern C++May 3 · 7 min read · What are Parser Combinators?? Instead of building one large monolithic parser like a recursive descent parser, parser combinators let you construct complex parsers by composing small, reusable functioJoin discussion
ACashwith chandrainsigsegv.hashnode.dev00The hidden detail behind std::addressof in C++Apr 28 · 3 min read · In c++, even something like &obj is not always what it seems. Normally, when we write: struct Resource { int data = 42; }; int main() { Resource r; auto h = &r; std::cout << h << '\n'Join discussion