Results for: "to_proc"

No documentation available
No documentation available

Returns an Array of Element children. An XPath may be supplied to filter the children. Only Element children are returned, even if the supplied XPath matches non-Element children.

doc = Document.new '<a>sean<b/>elliott<c/></a>'
doc.root.elements.to_a                  #-> [ <b/>, <c/> ]
doc.root.elements.to_a("child::node()") #-> [ <b/>, <c/> ]
XPath.match(doc.root, "child::node()")  #-> [ sean, <b/>, elliott, <c/> ]
No documentation available

Returns this entity as a string. See write().

No documentation available
No documentation available
No documentation available

Returns the string value of this text node. This string is always escaped, meaning that it is a valid XML text node string, and all entities that can be escaped, have been inserted. This method respects the entity filter set in the constructor.

# Assume that the entity "s" is defined to be "sean", and that the
# entity "r" is defined to be "russell"
t = Text.new( "< & sean russell", false, nil, false, ['s'] )
t.to_s   #-> "&lt; &amp; &s; russell"
t = Text.new( "< & &s; russell", false, nil, false )
t.to_s   #-> "&lt; &amp; &s; russell"
u = Text.new( "sean russell", false, nil, true )
u.to_s   #-> "sean russell"

Contains all discovered TupleSpaces except for the primary.

Contains all discovered TupleSpaces except for the primary.

No documentation available
No documentation available

Convert back to the [name, version, platform] tuple

No documentation available
No documentation available
No documentation available

Returns an Array of source URI Strings.

No documentation available
No documentation available
No documentation available

Constructs String from URI

Constructs String from URI

The cookie string suitable for use in an HTTP header

The HTTP version as show in the HTTP request and response. For example, “1.1”

Search took: 2ms  ·  Total Results: 1909