I am asking myself what would be the view bound equivalent to
(implicit conv: String => A)
My first attempt was to simply declare the type parameter A
as follows:
[String <% A]
But the Scala compiler complains with "not found: type A".
Any suggestions?