Skip to content

Instantly share code, notes, and snippets.

@splinterofchaos
splinterofchaos / monad-parser.cpp
Created November 19, 2012 17:32
Monadic parsing in C++
#include <memory>
#include <iostream>
#include <sstream>
#include <utility>
#include <algorithm>
#include <iterator>
struct sequence_tag {};
struct pointer_tag {};
@CMCDragonkai
CMCDragonkai / regular_expression_engine_comparison.md
Last active June 25, 2024 15:37
Regular Expression Engine Comparison Chart

Regular Expression Engine Comparison Chart

Many different applications claim to support regular expressions. But what does that even mean?

Well there are lots of different regular expression engines, and they all have different feature sets and different time-space efficiencies.

The information here is just copied from: http://regular-expressions.mobi/refflavors.html

@MattPD
MattPD / cpp.std.coroutines.draft.md
Last active July 3, 2024 02:23
C++ links: Coroutines (WIP draft)