Scala - How AbstractSeq reduces bytecode size

Viewed 62

I was going through scaladocs and came across AbstractSeq class. They describe it as

Explicit instantiation of the Seq trait to reduce class file size in subclasses.

How does this reduce file size of subclasses? Subclasses will get all the methods anyway right? Can someone explain how this works

1 Answers
Related