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

  • Home
  • SEARCH
  • 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 8949249
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:11:02+00:00 2026-06-15T13:11:02+00:00

Why does function personFromParams return None ? def personFromParams(p: Map[String, String]): Option[Person] = for

  • 0

Why does function personFromParams return None?

  def personFromParams(p: Map[String, String]): Option[Person] =
    for {
      name <- p.get("name")
      ageStr <- p.get("age")
      age <- toInt(ageStr)
      validStr <- p.get("valid")
      valid <- toBool(validStr)
    } yield { println("personFromParams()"); new Person(name, age, valid) }

   def tryo[T](f: => T): Option[T] = try {Some(f)} catch {case _ => None}

   def toInt(s: String): Option[Int] = tryo(s.toInt);
   def toBool(s: String) = tryo(JBool.parseBoolean(s))

If give non-number value into toInt, it returns None for age, but I don’t understand
why does toInt interrupt for when the exception is caught and processed in function tryo.

  • 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-15T13:11:02+00:00Added an answer on June 15, 2026 at 1:11 pm

    Because the for comprehension can be equivalently written like this

    p.get("name").flatMap{
      name => p.get("age").flatMap {
        ageStr => toInt(ageStr).flatMap {
          age => p.get("valid").flatMap {
            validStr => p.get("valid").flatMap {
              validStr => toBool(validStr).map{
                valid => { println("personFromParams()"); new Person(name, age, valid) }
              } 
            }
          }
        }
      }
    }
    

    From the scala documentation for Option.flatMap:

    Returns the result of applying f to this Option’s value if this Option
    is nonempty. Returns None if this Option is empty. Slightly different
    from map in that f is expected to return an Option (which could be
    None).

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

Sidebar

Related Questions

does curl function need any special option to post multipart/form-data ?
What's the difference between these? var person = { age: 25, name: David };
Does the function clock_gettime return a timestamp measured from the epoch in UTC or
Does open function have some sort of restriction as to what kind of string
Does any function return how many files are in a directory? Is the only
How does function name scoping work across multiple C files? I'm porting a standard
Code: corresponding function does not executed when clicked <body onload=initialize('2.44','12.331') onunload=triggerUnLoad()> <select> <option onclick=initialize('2.44331','2.442211')>-sel
jQuery GET function does not execute. I am using a Telerik Data grid that
Can anyone explain what the following PHP Code does function query($query_string) { if ($query_string
In a C program, how does function call by value work, and how does

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.