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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:08:28+00:00 2026-05-14T00:08:28+00:00

This is something I encounter frequently, but I don’t know the elegant way of

  • 0

This is something I encounter frequently, but I don’t know the elegant way of doing. I have a collection of Foo objects. Foo has a method bar() that may return null or a Bar object. I want to scan the collection, calling each object’s bar() method and stop on the first one returning an actual reference and return that reference from the scan.

Obviously:

foos.find(_.bar != null).bar

does the trick, but calls #bar twice.

  • 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-14T00:08:29+00:00Added an answer on May 14, 2026 at 12:08 am

    You can do it with any Iterable by using iterator (which evaluates lazily–it’s called elements in 2.7). Try this out:

    case class Foo(i: Int) {
      def bar = {
        println("Calling bar from Foo("+i+")")
        (if ((i%4)==0) "bar says "+i else null)
      }
    }
    val foos = List(Foo(1),Foo(2),Foo(3),Foo(4),Foo(5),Foo(6))
    foos.iterator.map(_.bar).find(_!=null)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I encountered something that I can't understand. I have this code: cout << f1
I have JSON like this: { something: http://something.com } and HTML like this: <a
I'm aware of using syntax like this: (something) ? TRUE : FALSE But what
When you have code like this: Something something = new Something(); BlahEntities b =
Anybody encounter this kind of problem with CSS before? I have a header that's
I have a list in C that is something like this: typedef struct _node
In jQuery whenever I encounter something like this: $(div#MyDiv)..... I generally say to the
I'm trying something like this: (function() { var Foo, foo; Foo = function(proto) {
Sorry if I'm missing something obvious here...but please take a look at this code
I have this ActionLink in one of my views Html.ActionLink(pop.PopName, ShowAllEncounters, Encounter, new {popId

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.