Here are
276 public repositories
matching this topic...
Λrrow - Functional companion to Kotlin's Standard Library
Updated
Jan 6, 2022
Kotlin
C# functional language extensions - a base class library for functional programming
Functors, Applicatives, And Monads in Python
Updated
Jul 12, 2021
Python
A cohesive & pragmatic framework of FP centric Scala libraries
Updated
Aug 13, 2019
Scala
learn-by-doing course/tutorial for functional programming on scala
Updated
Feb 7, 2020
Scala
Simple & Efficient data access for Scala and Scala.js
Updated
Jan 3, 2022
Scala
A library for safer and smarter error- and "nothing"-handling in TypeScript.
Updated
Jan 6, 2022
TypeScript
In this article I try to explain why Haskell keeps being such an important language by presenting some of its most important and distinguishing features and detailing them with working code examples. The presentation aims to be self-contained and does not require any previous knowledge of the language.
Updated
Oct 21, 2021
Haskell
Async-capable IO monad for JS
Updated
Jan 6, 2022
JavaScript
👻 Option, Result, and Either types for TypeScript; Inspired by Rust
Updated
Jan 2, 2022
TypeScript
Mu is a purely functional library for building RPC endpoint based services with support for RPC and HTTP/2
Updated
Jan 5, 2022
Scala
🥃 Functional Algebraic Data Types
Updated
Sep 21, 2021
TypeScript
Either and Maybe monads for better error-handling in C++ ↔️
Monad, Functional Programming features for Golang
A library of Haskell-style morphisms ported to ES2015 JavaScript using Babel.
Updated
May 27, 2017
JavaScript
Boilerplate-free syntax for computations with effects
Updated
Jun 24, 2014
Scala
Proof of concept: Maybe, Reader and Try monad
Updated
Mar 8, 2020
Swift
PHP Functional Programming library. Monads, common use functions and generic collections.
pure functional and generic programming for Erlang
Updated
Oct 1, 2019
Erlang
Flexible, expressive pattern matching for Ruby
📚 Write safer TypeScript using Maybe, List, Result, and Either monads.
Updated
Nov 29, 2021
TypeScript
Monad/MonadIO, Handler, Coroutine/doNotation, Functional Programming features for Rust
Updated
Aug 21, 2021
Rust
Assorted functional-oriented data structures and algorithms for Java.
Updated
Nov 13, 2021
Java
Cooperative multithreading as a pure monad transformer
Updated
Dec 21, 2021
Scala
Monads for `window` and `document`
Updated
Aug 4, 2021
JavaScript
Ruby port of some Scala's monads
Updated
Nov 30, 2021
Ruby
Functional Programming library for Java
Updated
Dec 15, 2021
Java
Monadic effects and equational reasonig in Coq
Improve this page
Add a description, image, and links to the
monads
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
monads
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Here's a
.avdlfile with a deliberate typo.@namespace("integrationtest") protocol WeatherService { record GetForecastRequest { // NOTE: missing semicolon string city int days_required; } enum Weather { SUNNY, CLOUDY, RAINY } record GetForecastResponse { string last_updated; array<Weather> daily_forecasts; } void