Tagged Questions
3
votes
2answers
175 views
How to express (implicit conv: String => A) as a view bound
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 ...