├── .gitignore ├── AssemblyInfo.cs ├── CONTRIBUTORS ├── LICENCE ├── README.md ├── XSharpx.csproj ├── XSharpx.sln ├── bin └── dll └── src └── XSharpx ├── DiffList.cs ├── Either.cs ├── FuncExtension.cs ├── Iteratee.cs ├── List.cs ├── ListBuffer.cs ├── ListZipper.cs ├── Monoid.cs ├── NonEmptyList.cs ├── Option.cs ├── Pair.cs ├── Reducer.cs ├── Semigroup.cs ├── Store.cs ├── Terminal.cs ├── Tree.cs └── Unit.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/.gitignore -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/README.md -------------------------------------------------------------------------------- /XSharpx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/XSharpx.csproj -------------------------------------------------------------------------------- /XSharpx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/XSharpx.sln -------------------------------------------------------------------------------- /bin/dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/bin/dll -------------------------------------------------------------------------------- /src/XSharpx/DiffList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/DiffList.cs -------------------------------------------------------------------------------- /src/XSharpx/Either.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Either.cs -------------------------------------------------------------------------------- /src/XSharpx/FuncExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/FuncExtension.cs -------------------------------------------------------------------------------- /src/XSharpx/Iteratee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Iteratee.cs -------------------------------------------------------------------------------- /src/XSharpx/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/List.cs -------------------------------------------------------------------------------- /src/XSharpx/ListBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/ListBuffer.cs -------------------------------------------------------------------------------- /src/XSharpx/ListZipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/ListZipper.cs -------------------------------------------------------------------------------- /src/XSharpx/Monoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Monoid.cs -------------------------------------------------------------------------------- /src/XSharpx/NonEmptyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/NonEmptyList.cs -------------------------------------------------------------------------------- /src/XSharpx/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Option.cs -------------------------------------------------------------------------------- /src/XSharpx/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Pair.cs -------------------------------------------------------------------------------- /src/XSharpx/Reducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Reducer.cs -------------------------------------------------------------------------------- /src/XSharpx/Semigroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Semigroup.cs -------------------------------------------------------------------------------- /src/XSharpx/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Store.cs -------------------------------------------------------------------------------- /src/XSharpx/Terminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Terminal.cs -------------------------------------------------------------------------------- /src/XSharpx/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Tree.cs -------------------------------------------------------------------------------- /src/XSharpx/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICTA/xsharpx/HEAD/src/XSharpx/Unit.cs --------------------------------------------------------------------------------