Method: RDF::NodeProxy#eql?
- Defined in:
- lib/lightrdf/node_proxy.rb
#eql?(other_node) ⇒ Boolean
Equality method delegated to node
43 44 45 |
# File 'lib/lightrdf/node_proxy.rb', line 43 def eql? other_node self.class == other_node.class and @node.id == other_node.node.id end |