[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![crates.io](https://img.shields.io/crates/v/pa.svg)](https://crates.io/crates/pa) [![Build Status](https://travis-ci.org/fgoinai/KaguyaRs.svg?branch=master)](https://travis-ci.org/fgoinai/KaguyaRs) [![docs](https://docs.rs/pa/badge.svg)](https://docs.rs/pa) # Category 1. Introduction 2. Install 3. Usage 4. Requirement 5. Basic function 6. Typeclass in rust as trait 7. Typeclass impl for std struct and enum of Rust 8. Contribution and developing 9. Thanks List 10. LICENSE ### Introduction KaguyaRs is a **TOY** functional library of Rust. In fact, this is just the way I get familiar with Rust. I will try my best to implement as many as utilities. But NEVER try this in production environment UNTIL: 1. Someday, I remove **TOY** in Introduction. OR 2. I publish 1.0-stable version. Key concerns of this library: 1. May all the functions in this library are pure IF I CAN. 2. Similar as 1, but pure -> lazy 3. Base on 1, heavy clone may occur, persistance data structure will be introduced later to achive 4 4. Performance. If not necessary `trait object` will be avoided. 5. Implementation may be ugly and buggy, just feel free to issue it for any ideas. ### Install Add dependency to your Cargo.toml ```toml [dependencies] pa = "*" ``` ### Usage Please refer tests and [Docs](https://docs.rs/pa) ### Requirement - toolchain: nightly + it can be normally used in stable, however feature is required for crate docs, clone repo if you want to use under stable - rustc version >= 1.26 ### Basic function Basic function and its signature provided is listed below, function based on map will be applied later There are two versions: function and macro For curry version, it act as a macro. The macro will form a new closure, for example ```rust let f = map(|x| x+1, [1,2,3,4,5]); assert_eq!(f, [2,3,4,5,6]); let f2 = map!(|x| x+1)([1,2,3,4,5]); // (Number -> Number) -> [Number] -> [Number] assert_eq!(f2, [2,3,4,5,6]) ``` For macro version, please refer test for further details as macro can curry automatically depends on the way to invoke macro. For details, please refer TODO.md. ### Typeclass in rust as trait In Haskell, there are so many useful typeclass such as Monad, Functor, Applicative etc. I will implement as much as typeclass as I can. This can greatly empower ability of Functional Programming in Rust. ### Typeclass impl for std struct and enum of Rust There are some struct and enum that are widely used in Rust, e.g. Vec, HashMap, Option, Result etc. They can be treat as ADT that can impl typeclass of Haskell like Monad. I will implement them to enhance the power of std struct and enum. ### Contribution and developing Feel free to contribute and develop base on this lib. Make sure you MUST follow the constraint of LICENSE. If you are interested to develop this library together, just make PRs **OR** send me a email to explain what you want to do for this library as a contributor. For other questions, please create a new issue for following. ### Thanks List - [RamdaJS](https://ramdajs.com/) - inspiration of most functions - [fluxxu](https://github.com/fluxxu) - pipe macro ### LICENSE Apache License v2.