I can\'t find the implicit conversions or implicit argument values being used in Scala code. This makes reading open source projects very confusing.
The implic
You can also use the Scala Plugin for IntelliJ IDEA. The implicit conversions are underlined like this (where Int 1 is converted to BigInt):
The above example is taken from https://www.jetbrains.com/help/idea/2016.1/working-with-scala-implicit-conversions.html?origin=old_help#highlight. You can read more on that page.