monads
Here are 221 public repositories matching this topic...
-
Updated
May 14, 2020 - C#
trait CassandraAsyncContext{
trait Quoted[T]{
def query: String
}
}
trait Context {
val context: CassandraAsyncContext
}
@free trait CassandraAlgebra extends Context {
def runSingle[T(q: context.Quoted[T]): FS[List[T]]
}after macro generation, trait Context got removed.
-
Updated
Feb 7, 2020 - Scala
Spotted in the gitter channel
The big thing for me was that it wasn't clear that the cache could be reused. It talks about the state monad and the cache being immutable which caused me to make some bad assumptions, even after diving into the code.
This should be more explicit and clear to not confuse people.
-
Updated
Apr 30, 2020 - Haskell
Generate Dash docset
It'd be great if we could generate a Dash docset for this – I make heavy use of Dash myself, and would love this. (I've taken a stab at it once a long time ago, but got stuck and gave up as other things were more pressing.)
-
Updated
Oct 31, 2019 - C++
Comes from #674
We need to add a section in mu docs clarifying what is needed for exposing the metrics. We can take the information from here: https://www.47deg.com/blog/metrics-integration-with-mu/#checking-metrics-through-prometheus-server-11
-
Updated
May 20, 2020 - TypeScript
-
Updated
May 27, 2017 - JavaScript
-
Updated
Jun 24, 2014 - Scala
-
Updated
Mar 8, 2020 - Swift
-
Updated
Apr 30, 2020 - TypeScript
-
Updated
Jul 19, 2018 - Go
E.g. How to implement following code using m_state
sync_github(#account{} = Account, Page) ->
case m_http:once( sync_github_at(Account, Page) ) of
{ok, []} ->
{ok, []};
{ok, Head} ->
case sync_github(Account, Page + 1) of
{ok, Tail} ->
{ok, Head ++ Tail};
{error, _} = Error ->
Error
Here's a .avdl file 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 ping(
-
Updated
Apr 14, 2020 - Ruby
-
Updated
Aug 8, 2018 - Rust
I think this will be useful, especially there are many people experiencing with issues like "window undefined" while building with Gatsby.
What do you think of putting this to Gatsby's Plugin page?
I put the link here in case you choose to list yours here...
https://www.gatsbyjs.org/docs/creating-plugins/
Thank you for your work!
-
Updated
May 20, 2020 - Java
-
Updated
Mar 13, 2020 - JavaScript
-
Updated
May 20, 2020 - TypeScript
-
Updated
Apr 30, 2017 - TypeScript
-
Updated
Apr 27, 2020 - PHP
Improve this page
Add a description, image, and links to the monads topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the monads topic, visit your repo's landing page and select "manage topics."
What version are you currently using?
LATEST
What would you like to see?
When you are trying to review the first 2 levels of the Open ladder of functional programming using Kotlin and Arrow, I don´t find many examples in the documentation about the following topics: