Skip to content

Instantly share code, notes, and snippets.

View hbarcelos's full-sized avatar
🕶️
I know how to exit Vim :v

Henrique Barcelos hbarcelos

🕶️
I know how to exit Vim :v
View GitHub Profile
@hbarcelos
hbarcelos / promises.cpp
Last active January 7, 2016 00:03
C++ Promises
#include <iostream>
#include <cstdlib>
#include <functional>
template <typename ValueT, typename ReasonT>
class Promise {
private:
enum State {
FULFILLED, REJECTED, PENDING
};