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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:59:49+00:00 2026-05-26T04:59:49+00:00

Possible Duplicate: Better way of converting a Map[K, Option[V]] to a Map[K,V] I have

  • 0

Possible Duplicate:
Better way of converting a Map[K, Option[V]] to a Map[K,V]

I have a Map[Symbol, Option[String]] from reading values from a web page, where some might be missing.

I’d like to ‘flatten’ this to Map[Symbol, String] removing all the None values.

The best I can do so far is

def removeNones[K, V](map: Map[K, Option[V]]): Map[K, V] = 
    map.collect { case kv if kv._2.isDefined => (kv._1, kv._2.get) }

but I really don’t like the case, and having to rebuild the Pair.

Can anyone find a nicer expression?

  • 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-26T04:59:49+00:00Added an answer on May 26, 2026 at 4:59 am
    val m = Map('a -> Some("a string"), 'b -> None)
    
    m collect {case(a, Some(b)) => (a, b)}
      // Map('a -> a string)
    

    seems to do the trick.

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

Sidebar

Related Questions

Possible Duplicate: A better way to compare Strings which could be null I have
Possible Duplicate: ListView.SelecctedItems shows 0 selected ok..Let me explain in better way My requirement
Possible Duplicate: In STL maps, is it better to use map::insert than []? I
Possible Duplicate: How to validate domain name in PHP? Better way to validate a
Possible Duplicate: What is the fastest way to swap values in C? I need
Possible Duplicate: Is there an “exists” function for jQuery Is there a better way
Possible Duplicate: Standard way to detect mobile browsers in a web application based on
Possible Duplicate: Nullable values in C++ What is the best way to represent nullable
Possible Duplicate: Is there a better way than parsing /proc/self/maps to figure out memory
Possible Duplicate: Better way to Format Currency Input editText? The problem is simple and

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.