haskell-issues
haskell-issues copied to clipboard
An unofficial issue tracker for all things Haskell-related
These https://github.com/chrisdone/ircbrowse/search?utf8=%E2%9C%93&q=focused seem to be the critical sections of code, except that you would need to filter for this before you count how many entries to display on this page...
If we could have an operator `(§) = ($)` with highest precedence to the left and lowest precedence to the right, as if we ran a preprocessor parsing pass over...
See https://github.com/aelve/haskell-issues/issues/31
It would be `Cofree f a -> Cofree f [a]` and turn a tree into a tree of finite paths from its root to each node. (gotta look at the...
`Foldable` would map to a type constructor with one type parameter `a` and its result isomoprhic to `Monoid m => (a -> m) -> m.` `Functor`, `Traversable`, `Monad`, `Applicative` and...
It currently has type > Functor f => (forall x. f x -> g x) -> Cofree f a -> Cofree g a It could have type > Functor f...
``` import Data.Coercible data EndoT m a = EndoT {runEndoT :: a -> m a} deriving Wrapped instance Monad m => Monoid (EndoT m a) where mempty = coerce return...
deriving Wrapped, deriving Lens, deriving Fields, etc. should invoke lens's makeWrapped, makeLenses, makeFields, etc.
https://github.com/aelve/haskell-issues/issues/28, https://github.com/aelve/haskell-issues/issues/14 and the exference project suggest the need for a common library about types and operations between types, like unification.
I'm not sure whether this should look this stupid and I should change my approach, or we're just missing an alias.