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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:33:40+00:00 2026-05-13T07:33:40+00:00

Building on this this post , I needed a clean way to extract nodes

  • 0

Building on this this post, I needed a clean way to extract nodes in a for comprehension only if they had specific attribute values. Here’s what I came up with:

def attributeValue(attrs: (String, String)*)(n: Node) = 
  attrs.map { p =>
    n.attribute(p._1).exists(_ == p._2)
  } reduceLeft(_ && _)

And here’s an example that uses it to extract item objects from an atom feed.

def parseAtomItems(ns: NodeSeq) = ns \\ "entry" flatMap { i =>
  for(
    t <- i \ "title";
    l <- i.\("link").filter(attributeValue(
        "type"  -> "text/html",
        "rel"   -> "alternate"
        ).flatMap(_.attribute("href"))
    ) yield FeedItem(t text, l text)
}

My question then: is there a cleaner / more idiomatic way to implement attributeValue?

  • 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-13T07:33:41+00:00Added an answer on May 13, 2026 at 7:33 am

    I think the code is pretty good, actually. I’d do this:

    def attributeValue(attrs: (String, String)*)(n: Node) =   
      attrs forall { 
        case (key, value) => n attribute key exists (_ == value)
      }
    

    Alternatively,

    def attributeValue(attrs: (String, String)*)(n: Node) =   
      attrs forall { 
        case (key, value) => n \ ("@"+key) exists (_ == value)
      }
    

    The main advantage to forall over reduceLeft being that the former will stop at the first false result, while the latter will iterate over every key/value pair, even if a false match is guaranteed.

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

Sidebar

Related Questions

Ok. So I'm building this site which is accessible through two different domains. So
I've been getting this undefined symbol building with this command line: $ gcc test.cpp
I'm building an ogre3d tutorial based on this setup http://www.ogre3d.org/wiki/index.php/SettingUpAnApplication#XCode I've followed all steps
I am building an ObjectQuery like this: string query = select value obj from
I have this legacy database for which I'm building a custom viewer using Linq
I'm building a Windows service and following this MSDN article , but I'm stuck
I am building a multithreaded system that works like this: While there are entities:
Some time ago I got this error when building ANY Visual Studio Deployment project.
I am building a Setup Package using VS2008. This is a regular setup package
When building a new iPhone app in Xcode, I'm getting this error: codesign error:

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.