Skip to content

Instantly share code, notes, and snippets.

View leon737's full-sized avatar

Leonid Gordo leon737

View GitHub Profile
@leon737
leon737 / Range.cs
Created March 19, 2017 17:21
Range<T>
using System;
using System.Collections.Generic;
using System.Linq;
namespace ClassLibrary1
{
public class Range<T>
where T : IComparable<T>
{
protected T _lowBound;
@leon737
leon737 / F# monads
Last active December 20, 2015 02:29
F# monads
Monads implemented:
Maybe
Reader
Writer