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 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

UPDATE!! I am sorry for this post, the code I had written for this
I have an array I'm building like this: Post.where(:user_id => current_user.id, :status_id => 2).select(:id).inspect.to_a
I'm building this report in a system for a Billboard company. They have a
Refer to this post compile a Xcode project in command line Building Qt Xcode
I'm building this small java applet in which I need a JPanel which will
Ok. So I'm building this site which is accessible through two different domains. So
Sorry for such a trivial question, but I'd feel silly building this if it
I have an application that uses the .NET framework 3.5. I am building this
I've been getting this undefined symbol building with this command line: $ gcc test.cpp
When building code like this: <script type=text/javascript src=<%=ResolveUrl(~/js/js.js)%>></script> or <input type=image src=<%=ResolveUrl(~/img/submit.png)%> /> Should

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.