class RDF::N3::Algebra::Log::NotEqualTo

Equality in this sense is actually the same URI. A cwm built-in logical operator.

Constants

NAME
URI

Public Instance Methods

apply(term1, term2) click to toggle source

Returns ‘true` if the operands are not the same RDF term; returns `false` otherwise.

@param [RDF::Term] term1

an RDF term

@param [RDF::Term] term2

an RDF term

@return [RDF::Literal::Boolean] ‘true` or `false` @raise [TypeError] if either operand is unbound

# File lib/rdf/n3/algebra/log/not_equal_to.rb, line 19
def apply(term1, term2)
  RDF::Literal(!term1.eql?(term2))
end