Skip to content

Instantly share code, notes, and snippets.

@dreum
dreum / and_then.hpp
Last active October 26, 2018 18:04 — forked from LesleyLai/and_then.hpp
Exceptional Monad in C++ with std::optional
#ifndef AND_THEN_HPP
#define AND_THEN_HPP
#include <optional>
#include <list>
#include <algorithm>
#include <functional>
#include <type_traits>
template<typename T1,