Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6219367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:46:03+00:00 2026-05-24T07:46:03+00:00

Possible Duplicate: What do <:<, <%<, and =:= mean in Scala 2.8, and where

  • 0

Possible Duplicate:
What do <:<, <%<, and =:= mean in Scala 2.8, and where are they documented?

I’m curious since I saw them in Scala library code, but I found it quite hard to Google something about them since their names are not words.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T07:46:03+00:00Added an answer on May 24, 2026 at 7:46 am

    These classes are used for implicit parameters that restrict the applicability of a method. Below is a description of each class. In general they are useful to restrain the a type parameter of an enclosing class within the context of a single method.

    <:<[A,B] or A <:< B

    The compiler can provide an implicit instance of this type only when A is a subtype of B. This is similar to A <: B in a type parameter list.

    This can be useful when you want to put an additional constraint on a class type parameter in the context of a particular method. For example the class Foo below can be used with any type, but the method bar is only valid when T is a subtype of Number.

    class Foo[T](x: T) {
      // In general T could be any type
      def bar(implicit ev: T <:< Number) = {
        // This method can now only be used when T is a subtype of Number
        // also, you can use ev to convert a T to number
        ev(x).doubleValue
      }
    }
    
    new Foo(123 : java.lang.Integer).bar // returns 123.0: Double
    new Foo("123").bar // compile error: Cannot prove java.lang.String <:< java.lang.Number
    

    =:=[A,B] or A =:= B

    The compiler can provide an implicit instance of this type only when A is the same type as B. This doesn’t have an equivalent syntax in a type parameter list, you’d just use the same type parameter twice.

    This can be used much like <:< except that it requires the types to match exactly. This could be used to make a pair of methods mutually exclusive.

    class Foo[T<:Number](x:T) {
      def numOnly(implicit ev: T =:= Number) = ()
      def floatOnly(implicit ev: T =:= Float) = ()
    }
    
    val asFloat = new Foo(123.0f:java.lang.Float)
    asFloat.numOnly // Compile error
    asFloat.floatOnly // Ok
    val asNum = new Foo(123.0f:java.lang.Number)
    asFloat.floatOnly // Ok
    asFloat.numOnly // Compile error
    

    Essentially if the type parameter is more specific than the constraint you can force the more specific method to be used.

    <%<[A,B] or A <%< B

    The compiler can provide an implicit instance of this type only when A can be converted to B. This is similar to A <% B in a type parameter list.

    This requires that there is an implicit function available to turn an A into a B. This will always be possible when A <: B since the implicit A <:< B satisfies this constraint.

    This class is actually marked as deprecated. It says you should instead just use A => B.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: What does this C++ code mean? I'm trying to map a C
Possible Duplicate: What do parentheses surrounding a JavaScript object/function/class declaration mean? I have found
Possible Duplicate: What do <:<, <%<, and =:= mean in Scala 2.8, and where
Possible Duplicate: What do <:<, <%<, and =:= mean in Scala 2.8, and where
Possible Duplicate: What does this CSS shorthand font syntax mean? I saw many people
Possible Duplicate: SQL: What does =* mean? I am going through some legacy code
Possible Duplicate: Reference - What does this symbol mean in PHP? Found an image
Possible Duplicate: What does this line of code mean? I was reading an article
Possible Duplicate: What does this ^ syntax mean in Objective-C? I found the declaration
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.