alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (divergent-implicit.scala)

This example Scala source code file (divergent-implicit.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

a, b, bar, bar, baz, baz, foo, foo, string, string, test1, test2

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

 

new blog posts

 

Copyright 1998-2021 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.