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 7050339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:07:53+00:00 2026-05-28T03:07:53+00:00

I want to define a Swappable trait with two values x,y and a swap

  • 0

I want to define a Swappable trait with two values x,y and a swap method such that calling swap on an object inheriting from Swappable returns another object of the same type with x,y switched. My best so far is:

trait Swappable[T] {
  val x: T
  val y: T
  def swap: Swappable[T] = {
    val (a,b) = (x,y)
    new Swappable[T] { val x=b; val y=a }
  }
}

But this isn’t what I want because the return type of swap is some anonymous class, instead of the original class I started with, so I get errors like:

def direct[S<:Swappable[Int]](s: S): S = if (s.x > s.y) s else s.swap 
<console>:32: error: type mismatch;
 found   : Swappable[Int]
 required: S
       def direct[S<:Swappable[Int]](s: S): S = if (s.x > s.y) s else s.swap
                                                                        ^

Is it possible to do what I’m trying to do? What is the correct type signature for swap?

  • 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-28T03:07:54+00:00Added an answer on May 28, 2026 at 3:07 am

    I don’t know how to do it, but I think maybe it would help to get a better idea of what exactly you want to happen. Consider a class like

    case class Foo(x: Int, y: Int) extends Swappable[Int] {
        val z = x
    }
    

    Now, if you have f = Foo(1, 2), should f.swap give you a Foo where x != z? If so, there’s no way within Scala to create a Foo like that. If not, what does it really mean to “swap x and y”?

    Perhaps what you’re really looking for is something like this:

    trait Swappable[A,T] {
        this: A =>
    
        val x: T
        val y: T
        def cons(x: T, y: T): A
    
        def swap = cons(y, x)
    }
    
    case class Foo(x: Int, y: Int) extends Swappable[Foo,Int] {
        val z = x
    
        def cons(x: Int, y: Int) = copy(x=x, y=y)
    }
    

    But I’m not sure.

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

Sidebar

Related Questions

I want to define a class that is able to populate itself reading from
I want to define reader macros in such a way that they affect only
I want to define two endpoint that will represent two different interfaces <services> <service
I want to define the data.store that store companyList, because I want to reuse
I want to define functions that can be used in the fixedpoint rule. For
I want to define a class that supports __getitem__ , but does not allow
I want to define a type cast from an arbitrary type to a primitive
I want to define a generic class in c++ that allow to execute my
I want to add swap functionality to two existing C++ classes. One class inherits
I want define some constants, specifically a Date and Calendar that are before my

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.