I saw examples, where a conversion function T => S
is passed as an implicit parameter. Scala calls this function view
and even provides special syntax sugar -- view bound
-- for that case .
However we already have implicit conversions ! Can I replace these views
(i.e. conversion functions passed as implicit parameters) with implicit conversions ? ? What I can do with views
what I can't with implicit conversions ?