This page is no longer maintained — Please continue to the home page at www.scala-lang.org

<:<, =:=, <%<

2 replies
E. Labun
Joined: 2010-06-20,
User offline. Last seen 42 years 45 weeks ago.

Hi all,
could you please explain the meaning and usage of <:<, =:=, <%< classes and objects from Predef [1]?
In what situations can they be useful?

Thank you!

--
Eugen Labun

[1] https://lampsvn.epfl.ch/trac/scala/browser/scala/tags/R_2_9_0_1/src//lib...

Jason Zaugg
Joined: 2009-05-18,
User offline. Last seen 38 weeks 5 days ago.
Re: <:<, =:=, <%<

On Thu, Aug 11, 2011 at 11:36 AM, Eugen Labun wrote:
> Hi all,
> could you please explain the meaning and usage of <:<, =:=, <%< classes and objects from Predef [1]?
> In what situations can they be useful?

http://stackoverflow.com/questions/2603003/operator-in-scala
http://stackoverflow.com/questions/3427345/what-do-and-mean-in-scala-2-8...

Jeff Olson
Joined: 2011-06-29,
User offline. Last seen 42 years 45 weeks ago.
Re: <:<, =:=, <%<
For two types A and B, if the compiler can find an implicit value of type A <:< B then it knows that A conforms to (is a subtype of) B. Likewise, if the compiler can find an implicit value of type A =:= B, then it knows that A and B and the same type. They are useful in encoding generalized type constraints as the above links explain.

scala> def prove[T](implicit proof: T) = true
prove: [T](implicit proof: T)Boolean

scala> prove[Null <:< String]
res0: Boolean = true

scala> prove[String <:< AnyRef]
res1: Boolean = true

scala> prove[Null <:< Long]
<console>:9: error: Cannot prove that Null <:< Long.
       prove[Null <:< Long]
            ^

scala> prove[Long <:< AnyRef]
<console>:9: error: Cannot prove that Long <:< AnyRef.
       prove[Long <:< AnyRef]
            ^

scala> prove[AnyRef =:= java.lang.Object]
res4: Boolean = true

scala> trait Foo { type T }
defined trait Foo

scala> val foo = new Foo { type T = Int }
foo: java.lang.Object with Foo{type T = Int} = $anon$1@258361f6

scala> prove[foo.T =:= Int]
res5: Boolean = true

scala> prove[Foo#T <:< AnyRef]
<console>:10: error: Cannot prove that Foo#T <:< AnyRef.
       prove[Foo#T <:< AnyRef]
            ^

scala> prove[Foo#T <:< Any]
res9: Boolean = true



Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland