Pavol Vargovčík
Pavol Vargovčík
I can see that there's a problem with `addSegment`'s implementation: Where to store the added segments? BuilderArena holds only pointers to segments and MessageBuilder is just too abstract to hold...
I'm OK with the "array of arrays" interface for readers if you prefer it. Me neither, I have no plans for my application to load segments lazily and array of...
I've come up with the following `Setup.hs` script, it might be helpful to you or people looking for some "how to" until the example gets settled down: ``` {-# LANGUAGE...
You're right, the build times started freaking me out, so I have added the following imports to `Setup.hs`: ``` import Control.Monad (when) import Distribution.Compat.Time (getModTime) ``` and the following changes...
Yes, it is picking the changes correctly for me (even with `touch`). And yes, sorry, I've forgot about the initial case when the file does not exist. This is the...
in case it makes any difference: ``` % cabal --version cabal-install version 3.2.0.0 compiled using version 3.2.0.0 of the Cabal library % ghc --version The Glorious Glasgow Haskell Compilation System,...
Using the version 1.0 of yappi, the following simple example conveniently shows 0.5s of time when the event loop is blocked by `main`, `spawn_blocking_sleep` and `blocking_sleep`. (But I don't understand...
> It would be a fun and worthwhile project to port Antimony to the newer kernel, but it's unlikely that I will get around to it myself. I can see...