Reputation: 23
For example, the Predef
object says it extends LowPriorityImplicits
, but there is no documentation for LowPriorityImplicits
.
https://www.scala-lang.org/api/current/scala/Predef$.html
More curious than anything else.
Upvotes: 0
Views: 65
Reputation: 2734
There is a part of the Scala language that is privately packaged because things otherwise can go wrong if they were to be used immaturely and compromise the soundness of the language, among other reasons. The docs for those private definitions don't get generated and published. You can see the implementation of LowPriorityImplicits
here
Upvotes: 3