├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── coretypes └── unit.go ├── either ├── either.go └── either_test.go ├── list └── list.go ├── maybe └── maybe.go ├── monad └── monad.go ├── pipeline └── pipeline.go └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8 5 | 6 | script: ./test.sh 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/README.md -------------------------------------------------------------------------------- /coretypes/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/coretypes/unit.go -------------------------------------------------------------------------------- /either/either.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/either/either.go -------------------------------------------------------------------------------- /either/either_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/either/either_test.go -------------------------------------------------------------------------------- /list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/list/list.go -------------------------------------------------------------------------------- /maybe/maybe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/maybe/maybe.go -------------------------------------------------------------------------------- /monad/monad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/monad/monad.go -------------------------------------------------------------------------------- /pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/pipeline/pipeline.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asteris-llc/gofpher/HEAD/test.sh --------------------------------------------------------------------------------