names-match? ( name1 name2 -- ? )
XML data types

Prev:XML data constructors
Next:assure-name ( string/name -- name )


Vocabulary
xml.data

Inputs
name1a name
name2a name


Outputs
?a boolean


Word description
Checks to see if the two names match, that is, if all slots are equal, ignoring those whose value is f in either name.
USING: prettyprint xml.data ; T{ name f "rpc" "methodCall" f } T{ name f f "methodCall" "http://www.xmlrpc.org/" } names-match? .
t


See also
name

Definition