Functions
The following functions are available globally.
-
Determine whether two documents are the same
Declaration
Swift
public func ==(lhs: XMLDocument, rhs: XMLDocument) -> BoolParameters
lhsXMLDocument on the left
rhsXMLDocument on the right
Return Value
whether lhs and rhs are equal
-
For supporting pattern matching of those enum case alias getters for XMLNodeType
Declaration
Swift
public func ~=(lhs: XMLNodeType, rhs: XMLNodeType) -> BoolParameters
lhsleft hand side
rhsright hand side
Return Value
true if both sides equals
-
Determine whether two nodes are the same
Declaration
Swift
public func ==(lhs: XMLNode, rhs: XMLNode) -> BoolParameters
lhsXMLNode on the left
rhsXMLNode on the right
Return Value
whether lhs and rhs are equal
Functions Reference