|
Scala example source code file (divergent-implicit.scala)
The Scala divergent-implicit.scala source code
object Test1 {
implicit def cast[A, B](x: A)(implicit c: A => B): B = c(x)
val x1: String = 1
val x2: String = cast[Int, String](1)
}
object Test2 {
class Foo
class Bar
class Baz
implicit def foo2bar(x: Foo)(implicit baz2bar: Baz => Bar): Bar = baz2bar(new Baz)
implicit def baz2bar(x: Baz)(implicit foo2bar: Foo => Bar): Bar = foo2bar(new Foo)
val x: Bar = new Foo
val y: Bar = new Baz
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala divergent-implicit.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.