gitextract_4nn5_ypf/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── kleisli.gemspec ├── lib/ │ ├── kleisli/ │ │ ├── composition.rb │ │ ├── either.rb │ │ ├── functor.rb │ │ ├── future.rb │ │ ├── maybe.rb │ │ ├── monad.rb │ │ ├── try.rb │ │ └── version.rb │ └── kleisli.rb └── test/ ├── kleisli/ │ ├── composition_test.rb │ ├── either_test.rb │ ├── future_test.rb │ ├── maybe_test.rb │ └── try_test.rb └── test_helper.rb