--
You received this message because you are subscribed to the Google Groups "scala-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-user+unsubscribe@googlegroups.com.
Not sure it’s that. Anyway here are some things IntelliJ gives you:
The above underline means an implicit conversion is being used.
I clicked on query
and pressed ctrl-shift-Q (for Qonversion?), and here's what I get:
It shows all potentially applicable implicit conversions, and bolds and focuses the one that is being used.
Here’s how it works for implicit parameters:
I clicked on column
and pressed ctrl-shift-P. IntelliJ highlighted the expression that the implicit parameter is being passed to, and is showing me that column’s implicit parameter is filled out to be juDateColumnType
, which itself is taking an implicit parameter for which timestampColumnType
has been selected.
--