Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vegansk/nimfp
Nim functional programming library
https://github.com/vegansk/nimfp
Last synced: 3 months ago
JSON representation
Nim functional programming library
- Host: GitHub
- URL: https://github.com/vegansk/nimfp
- Owner: vegansk
- License: mit
- Created: 2015-07-29T07:31:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T16:49:42.000Z (about 4 years ago)
- Last Synced: 2024-05-18T03:33:49.664Z (6 months ago)
- Language: Nim
- Size: 148 KB
- Stars: 131
- Watchers: 5
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nim - nimfp - Nim functional programming library. (Language Features / Functional Programming)
README
# nimfp [![nimble](https://raw.githubusercontent.com/yglukhov/nimble-tag/master/nimble.png)](https://github.com/yglukhov/nimble-tag)
[![Build Status](https://travis-ci.org/vegansk/nimfp.svg?branch=master)](https://travis-ci.org/vegansk/nimfp)
Nim functional programming library. Includes:
* Option type [src/fp/option.nim](src/fp/option.nim)
* List type [src/fp/list.nim](src/fp/list.nim)
* Either type [src/fp/either.nim](src/fp/either.nim)
* Map type [src/fp/map.nim](src/fp/map.nim)
* Stream type [src/fp/stream.nim](src/fp/stream.nim)
* Scala like _for comprehension_ and Haskell like _do notation_ support [src/fp/forcomp.nim](src/fp/forcomp.nim)While there is no documentation, you can see examples in the [tests/fp](tests/fp) directory.