-
Like a comment in the current definition [says](https://github.com/kefirjs/kefir/blob/master/src/interop/static-land.js#L27-L33), the definition is wrong:
```js
// This ap strictly speaking inco…
-
Since it peaked on HN[1] a few hours ago, there were some suggestions on things we could improve:
From mjburgess:
These definitions don't really give you the idea, rather often just code example…
-
Many `streaming` functions factor through a "fold" that guarantees that they consume their arguments sequentially and transform them with monad homomorphisms before re-emitting them. (cf. foldMap). …
-
flipped foldMap: `(Foldable t, Monoid c) => t a -> (a -> c) -> c`
It is similar to `whenJust`, but more pure, while `whenJust` is inherently effectful since it returns unit.
It can be used e.g. …
-
### Instances
- [x] Eq2
- [x] Ord2
- [x] Show2
- [x] Functor
- [x] Foldable1
- [x] Eq k => Eq1 (NonEmptyMap k)
- [x] Ord k => Ord1 (NonEmptyMap k)
- [ ] (Ord k, Read k) => Read1 (NonEmptyMap…
-
```_executeRequest``` is defined like this:
```scala
def _executeRequest[T, U](
method: String,
path: Seq[String],
queryParameters: Seq[(String, String)] = Nil,
reque…
-
I'd be happy to do this work. But it seems like this would be an obvious ask, so it led me to wonder, is there a specific reason that `Decoder s` doesn't have `Alternative` and `MonadPlus`?
-
Demonstration:
```
sage: P. = BooleanPolynomialRing()
sage: list(P(1))
[1]
sage: list(P(1))[0]
1
sage: list(P(1))[0] == 1
False
sage: type(list(P(1))[0])
```
Note that this behavior is inconsiste…
-
Evaluate the orientation number mod 2?
Need to think if this makes sense.
-
It would be nice to have operators for:
- forward and reverse function composition: `()`
- forward and reverse function application: `()`
- mathematical operations: `(+)`, `(-)`, `(*)`, `(/)`
- …