pawelsadlo

Results 9 comments of pawelsadlo

Isn't it a bug that mill build module is showing only build.sc in content? and name is "mill-build_" instead of "mill-build" If I import mill repo, its content root is...

its not a bug `i.refineUnsafe` (which is equivalent to `i.refineUnsafe[Interval.ClosedOpen[-1, N]]` here) tries to expand a `test` macro from Constraint , but `N` is not known when macro is expanded,...

I have been working on something similar ,and I think it would be good to have the following questions answered sooner or later: 1. What to do with collisions: ```scala...

> 2. I think nested flattens could be allowed, but you'd need it to be `@flatten c: Baz` in your example Yeah , I forgot @flatten c:Baz, will edit

@lihaoyi yeah it might be ```scala private def reduceUps(in: Array[String]): List[String] = in.foldLeft(List.empty[String]) { case (acc, x) => acc match { case h :: t if h == ".." =>...

I will get it done as soon as I have time, however if anyone wants to pick ,just feel free

Back in the days of early scala 3, prepending to tuple with *: was raising compilation time a lot, that's why I suspect :: . Maybe it's just an object...

@lihaoyi I have done some benchmarking on minimised literal syntax usage, and didn't notice any big difference in compilation time between M1 and M2 os-lib milestone. based on referenced PR...