-
**(Moved from playframework/playframework#4651)**
```
Welcome to Scala version 2.11.6 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_45).
Type in expressions to have them evaluated.
Type :help f…
-
Currently, in order to support things like:
``` scala
sealed case class Foo(value: Int)
implicit val fooSemigroup = Semigroup.instance[Foo](
append = (a, b) => Foo(a.value + b.value)
)
```
a lot …
-
See Suitesparse's `GxB_Monoid_terminal_new` to create a monoid, and `GxB_Monoid_terminal` (return the monoid terminal value (if any)).
In the dot product formulation of the matrix multiply, a dot p…
-
**Describe the bug**
We're using **Dokka 0.10.0** and `outputFormat = 'jekyll'` and the code is properly formatted with the use of the corresponding delimiters.
For instance:
```
# Monoid
…
-
### IO
- [X] `Monad`
- [X] `Bifunctor`
- [ ] `MonadPlus`, `Alternative`
### Fiber
- [x] `Applicative`
- [x] `Monoid`
### Schedule
- [ ] `Applicative`
- [ ] `Monoid`
- [ ]…
-
I'm citing from https://hydra.nixos.org/build/77799382:
~~~
Tests:
left identity Monoid law: [OK, passed 100 tests]
right identity Monoid law: [OK, passed 100 tests]
associativity Monoid …
-
The code is at: https://github.com/j3-fortran/generics/tree/68e2cb849f5e84bc468c4dae0f8b34c6ea4d2432/updated_examples/matrix
See the README for the order, it's a set of modules that build on top of…
-
An unexpected behaviour using the two variants of __eWiseApply__ for matrices was noticed.
> [Documentation of the two variants](https://github.com/Algebraic-Programming/ALP/blob/54d340942d95e2cae6…
-
Hi! Just tried to compile it on 9.6.3, and got the following:
```
Configuring library for web-inv-route-0.1.3.2..
Preprocessing library for web-inv-route-0.1.3.2..
Building library for web-inv-r…
-
Need a way to extend types, without subtyping:
```
typeclass Monoid #a {
append: Function(#a, #a, #a)
empty: #a
}
instance stringMonoid = Monoid String {
append: \x y -> x ++ y
empty: ""
}
…