com-lihaoyi / scalatags

ScalaTags is a small XML/HTML construction library for Scala.
https://com-lihaoyi.github.io/scalatags/
MIT License
757 stars 117 forks source link

Scalatags only supports immutable Seq? #236

Open edwardcwang opened 2 years ago

edwardcwang commented 2 years ago

Seems like scalatags only supports the immutable Seq scala.collection.immutable.Seq rather than the generic scala.collection.Seq - just wondering if this was by design or by oversight.

scalway commented 2 years ago

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.