• 1 Post
  • 3 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle
  • You literally attach a license to every comment you post. The rules which make that license effective are the same rules which make Free Software and open-source licenses effective, too. Show some solidarity; you’re part of the community too, and you should feel comfortable making the same demands as the rest of us. When you say that “open source defenders” are distinct from “developers” you are contributing to a schism for the sake of aggrandizing employment and exploitation.




  • Reading between the lines, the documentation has the key:

    Generic instances … correspond to Semigroup and Monoid instances defined by pointwise lifting.

    In more words: each generic type can be broken up into a tuple-like row of components, and the generic type admits a monoid/semigroup whenever every component in the row admits a monoid/semigroup. In your handwritten Semigroup instance, the given code is agnostic as to the types of variables and functions; all that matters is that they already have Semigroup instances of their own.

    Let me answer the other question: where’s the monoid in the generated Rep? Well, there isn’t one! The Rep merely has a struct-like product of component types. If a monoid exists for each component, then a monoid for the entire struct exists (and is built from the obvious pointwise lifting!) but otherwise there isn’t a monoid derived from the struct itself. This should be a notable contrast from generic instances for e.g. Functor, where every Rep has exactly zero or one Functor due to the algebra of the semiring of types (there is an underlying algebraic equation with at most one possible solution.)