scalway
scalway
I'm using such code right now to have `.get` method ```scala class QuckLensExt[T,U](private val pm: PathModify[T, U]) extends AnyVal { def get = { var values: List[U] = Nil pm.using...
No... I was not precise enough... sorry. Problem is when java API is called. `symbolicLinkTo` and `linkTo` creates links in totally different manner. `symbolicLinkTo` assumes to be called on `link`...
java api is consistent here: link path is always first param. I propose to deprecate `linkTo` with appriopriate comment, and create `def hardLinkTo()`. `Dsl.ln` is stil problematic part (currently it...
Even worse is that it keeps resources when you call for example `find(...)` on it, and to be honest I consider it as a serious BUG. ```scala //this will throw...
I tried to make it... but sbt has to much magic. :(. ```scala def onScalaJSStage[A](onFastOpt: => Initialize[A], onFullOpt: => Initialize[A]): Initialize[A] = Def.settingDyn { val cog = configuration.value Def.settingDyn {...
It wasn't fixed in scala repl. It just fallback to object wrapper when value classes are defined: https://github.com/scala/scala/commit/fd6ea5b137de04756ea7514a4504bce83c235bb1
scalatags uses whatever is in predef. In scala 2.11 and 2.12 it is scala.collection.Seq in 2.13 and 3 it is scala.collection.immutable.Seq.
@sequencer you can always use `_.wrapped.available` but yea... it is long standing bug. Still... `_.available` does not guarantee anything. Spec says it is only estimation.