I am reading scala API of List, I found out: indexOf(elem: A, from: Int)
so I run following code:
scala> List(1,3,5,8).indexOf(8,-2)
res393: Int = 1
scala> List(1,3,5,8).indexOf(8,-3)
res391: Int = 0
why is this result? My Scala version is 2.12.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0).
It is a bug (although indeed there's no clear documentation of the expected results when
from
is negative) - and thanks to your question, it will be fixed in 2.12.2: https://github.com/scala/scala/pull/5621So - good catch!