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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:12:09+00:00 2026-06-18T10:12:09+00:00

I have a Set of elements that have their equality defined around a key,

  • 0

I have a Set of elements that have their equality defined around a key, but other fields can be different… So when I need to ‘update’, this is what I’ve tried:

object sandbox {

  case class K(val id: Int, val message: String) {
    override def equals(that: Any) = that match {
      case K(this.id, _) => true
      case _ => false
    }
    override def hashCode = this.id
    override def toString = "(" + id + "," + message + ")"
  }

  val s = Set(K(1, "a"), K(2, "b"))               //> s  : scala.collection.immutable.Set[test.sandbox.K] = Set((1,a), (2,b))
  val updatedElem = K(1, "c")                     //> updatedElem  : test.sandbox.K = (1,c)

  s + updatedElem                                 //> res0: scala.collection.immutable.Set[test.sandbox.K] = Set((1,a), (2,b))

  Set(updatedElem) | s                            //> res1: scala.collection.immutable.Set[test.sandbox.K] = Set((1,c), (2,b))
  }

Adding an element that is already there won’t change the set, and removing it first and adding the updated again seems kind of sub-optimal.

The union method preserves the elements of the set on the left side, but that behaviour is not documented; so I shouldn’t rely on it.

So now, is there something more obvious that I am missing? Should I rely on the actual behaviour (and write a test just in case it changes)? Or should I do the update in two steps?

  • 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-06-18T10:12:11+00:00Added an answer on June 18, 2026 at 10:12 am

    From my point of view, it is actually a problem of concepts in modelling. The point is that equal objects should really be equivalent… otherwise you may want to consider some other structures. For example, why not try Map that maps id to message (or id to K(id,message))? That seems much more cleaner in concepts, and then you can use .updated(1,"c") to update it.

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

Sidebar

Related Questions

I have a vector of booleans. I need to set its elements from n-th
1) By default configuration elements have their connectionStringName attribute set to LocalSqlServer , and
I have some JavaScript code that creates some div elements and it sets their
I have a set of elements with different attributes, like this: <?xml version=1.0 encoding=utf-8?>
I have two absolutely positioned div elements that overlap. Both have set z-index values
I have a paging control on my site that has it's container element set
I have set of 6 elements and I would like to filter by every
I have a set of unique elements (there are not two identical elements). And
I have a set of selected elements in jQuery: <div class=element></div> <div class=element></div> <div
I have a set of vertically ordered elements. They are displayed with the following

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.