ScalaWilliam
ScalaWilliam
> @kitbellew we already took it into bloop so in general PR is fine. > > The only issue is that scripted test fails with some binary-incompatibility error. Thanks for...
Reproduced it - will fix in due course. This is because an SBT 1.6 build refers to settings that are not there in SBT 1.2.x
hi @dos65 this is fixed now, would you be able to review it again? Many thanks,
@joroKr21 @smarter https://github.com/lampepfl/dotty/issues/11685 is now merged into dotty (it was noted as a blocker on an earlier message of joro's). Is it now possible to support this library on Scala...
How about we first make it work without any cross-building and release it as `cats-tagless3` - since configuring a build is super complicated, this could be decoupled? I had a...
@smarter yep that works. compilation is Ok in `core` but not in `macrosJVM` and `lawsJVM`. 138 errors
Interesting idea, but the thought of having to copy-paste code is discomforting. I wonder if it'd make more sense to have a shared project for an "initial" phase of facades,...
Can't thank you enough @klausenbusk
``` scala scala> val a = {2} a: scala.xml.Elem = 2 scala> val b = 2 b: scala.xml.Elem = 2 scala> a == b res0: Boolean = false scala> (a.hashCode,...
``` scala package com.scalawilliam.examples object Equality extends App { val a = {2} val b = 2 println(a.xml_==(b)) println(a.equals(b)) println(a == b) println(({2}2 \ "number").distinct) } ``` ``` false false...