Skip to content

Instantly share code, notes, and snippets.

View robn's full-sized avatar
🤖
robots just like mama used to make

Rob N robn

🤖
robots just like mama used to make
View GitHub Profile
@pskupinski
pskupinski / C++0x_Maybe_Monad.cpp
Created March 13, 2011 04:57
My maybe monad implementation in C++0x.
// This code is in the public domain, feel free to use it in anyway you'd
// like to.
#include <iostream>
#include <functional>
using namespace std;
template<class A>
class Maybe {
protected:
A a;