Daniel Capo Sobral
Daniel Capo Sobral
And here I was thinking this was about mod_zip sending `HEAD` requests to get the size of every file...
Whilst still being limited by not being able to use the URLs directly, as Github recommends, I came up with an alternative solution that does not rely on the number...
My `autoPage` function had a bug: it missed the last page, if there was more than one. Small change in implementation: ```scala def autoPage[F[_]: Sync, T]( first: Pagination)( call: Pagination...
Did it migrate to Cats 3? Hardcoding `IO` is the wrong thing for Cats 2.
The documentation does not provide return types, though. It's all well and good on a dynamic typing language like javascript, but it's a big missing piece for Scala.
Note that my motive is to make the tagless final design achieve its goals. This is not an abstract issue for me, as I run into this very problem.
The problem is that `RuleTransformer` recurses before applying the rules, but not after, so any rules dependending on the recursion to be applied will not work on anything added by...
I'll take a look at it. 1.12.5 is bound to be released soon, and it would be best if any compatibility problems with it were spotted before it does so.
I don't think the task type needs changing at all. One is `Function1`, which can be extended by a class or object. The other is already a specific type, iirc.
This will probably work if you switch it to use ivy dependency resolution. The problem is on lm-coursier, as I mentioned on #5465. The root cause is coursier/coursier#1541.