Skip to content

Instantly share code, notes, and snippets.

@1cg
Created October 14, 2011 02:57
Show Gist options
  • Save 1cg/1286138 to your computer and use it in GitHub Desktop.
Save 1cg/1286138 to your computer and use it in GitHub Desktop.
package hacks
uses gw.xml.simple.SimpleXmlNode
enhancement SimpleXmlNodeEnhancement : SimpleXmlNode {
function children( str : String ) : List<SimpleXmlNode> {
return this.Children.where( \ s -> s.Name == str )
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment