Skip to content

Instantly share code, notes, and snippets.

@teglsbo
teglsbo / maybe.cs
Last active April 6, 2017 20:26 — forked from refactorsaurusrex/maybe.cs
Maybe<T>, inspired by Mark Seemann
using System.Collections;
using System.Collections.Generic;
namespace Dev_Maybe
{
public class Maybe<T> : IEnumerable<T>
{
readonly IEnumerable<T> values;
public Maybe()