Jaro

Results 90 issues of Jaro

There is now a semi-official source of version information about GHC versions and base versions: https://github.com/haskell/ghcup-metadata/ The [stackage FAQ](https://github.com/commercialhaskell/stackage#frequently-asked-questions) claims there are also repositories for stackage metadata, but I can't...

I would like to summon GHC 9.6.2 projects, but that is not possible yet. So, I've quickly looked into the source code and what kind of changes that would require....

It is quite common to write an infinite list and take only a finite prefix of it. However, I believe it is not possible in Liquid Haskell to specify that...

## Summary I have noticed that the highlighting of the agda-mode plugin makes my Emacs considerably less responsive. Many operations such as scrolling and inputting text incur a noticeable delay....

ux: emacs
upstream

Set difference and union sometimes have to be computed together, such as in semi-naive fixed point computation: ```haskell seminaive :: Ord a => Set a -> (Set a -> Set...

feature-request
Set

The `Data.Sequence` module is missing the common function `takeEnd :: Int -> [a] -> [a]` where `takeEnd n xs = drop (length xs - n) xs`. I think it is...

feature-request
Seq

Here's my code: ```haskell import Control.FRPNow import Control.Monad (forever) ticks :: Now (EvStream ()) ticks = do (evs, cbk) Behavior (Behavior Integer) count = foldEs (\a _ -> a +...

Running `cabal-store-gc --collect` yields: ``` [ 0.00076] ghc.info: ghc [ 0.00483] process.0.start: cwd=/tmp ghc --info [ 0.08585] info: Reading global package db [ 0.08606] ghc.read-package-db: /home/jaro/.ghcup/ghc/8.10.4/lib/ghc-8.10.4/package.conf.d [ 0.12203] info: 34...

When compiling libraries with many (transitive) dependencies on C libraries like [`monomer`](https://hackage.haskell.org/package/monomer), cabal will report every missing C library on individual build attempts. This is extremely annoying. It would be...

cabal