Comparing BackendJava:master...palatable:master · BackendJava/lambda
Commits on Mar 14, 2022
Commits on Nov 12, 2022
-
add automatic module name to jar manifest
This allows downstream projects using lambda to publish their own jars as modules without switching lambda itself to a jigsaw module.
Sebastian Hoß committed
Nov 12, 2022
Commits on Nov 26, 2022
Commits on Mar 31, 2023
Commits on Apr 21, 2023
-
FoldRight fixes for Monoid/Semigroup
- Semigroup::foldRight had parameters flipped - Monoid::foldRight was accumulating the accumulator from the left. This has been fixed but the identity is now being used as a starting accumulator. Otherwise, the evaluation order is unchanged. - Changed ExplainFold parameter name since accumulator can be in either position