monad alternatives and similar packages
Based on the "Algorithms and Data structures" category.
Alternatively, view monad alternatives based on common mentions on social networks and blogs.
-
matrex
A blazing fast matrix library for Elixir/Erlang with C implementation using CBLAS. -
exconstructor
An Elixir library for generating struct constructors that handle external data with ease. -
erlang-algorithms
Implementations of popular data structures and algorithms -
remodel
:necktie: An Elixir presenter package used to transform map structures. "ActiveModel::Serializer for Elixir" -
aja
Extension of the Elixir standard library focused on data stuctures, data manipulation and performance -
MapDiff
Calculates the difference between two (nested) maps, and returns a map representing the patch of changes. -
the_fuzz
String metrics and phonetic algorithms for Elixir (e.g. Dice/Sorensen, Hamming, Jaccard, Jaro, Jaro-Winkler, Levenshtein, Metaphone, N-Gram, NYSIIS, Overlap, Ratcliff/Obershelp, Refined NYSIIS, Refined Soundex, Soundex, Weighted Levenshtein) -
exmatrix
Elixir library implementing a parallel matrix multiplication algorithm and other utilities for working with matrices. Used for benchmarking computationally intensive concurrent code. -
ecto_materialized_path
Tree structure & hierarchy for ecto models -
dataframe
Package providing functionality similar to Python's Pandas or R's data.frame() -
Conrex
An Elixir implementation of the CONREC algorithm for topographic or isochrone maps. -
murmur
:speech_balloon: An implementation of the non-cryptographic hash Murmur3 -
bitmap
Bitmap implementation in Elixir using binaries and integers. Fast space efficient data structure for lookups -
Closure Table
Closure Table for Elixir - a simple solution for storing and manipulating complex hierarchies. -
paratize
Elixir library providing some handy parallel processing facilities that supports configuring number of workers and timeout.
Free Global Payroll designed for tech teams
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of monad or a related project?
Popular Comparisons
README
Monad
This library provides do-syntax and monads for Elixir. It is heavily inspired by Haskell.
Contributing Guidelines
To contribute:
Fork the
monad
repository on GitHub.Clone your fork or add the remote if you already have a clone of the repository.
git clone [email protected]:your_username/monad.git # or git remote add mine [email protected]:your_username/monad.git
Create a feature branch for your change.
git checkout -b feature/name-of-your-branch
Make your change and commit. Use a clear and descriptive commit message, see this note.
Push to your fork of the repository and then send a pull-request through GitHub.
git push mine feature/name-of-your-branch
We will review your patch and merge it into the main repository or send you feedback.
Coding Style
- Golden rule: just follow the style of the rest of the code.
- Avoid unneccesary whitespace in expressions with braces and brackets
(tuples / lists). Don't write
{ :ok, a }
, write{:ok, a}
. Whitespace is allowed in nested expressions if it significantly improves readability, but if things get that complicated prefer to rewrite the expression to be simpler (one spot where that's not always possible is pattern matching). - Add documentation to all modules (
@moduledoc
) and public functions/macro's (@doc
). Exception: implementations of callbacks don't need (but may have) documentation, if you leave off the documentation a default will be provided by the documentation generator. - In documentation use the first line as a short summary, this will show up in the function/module/whatever overview in the documentation.
- Line length: limit the numbers of characters per line to 80.
- Avoid trailing whitespace.
Branching Model
Use Vincent Driessen's branching model (as supported by git-flow, of course you're free to do it by hand).