class RDF::N3::Algebra::Str::NotEqualIgnoringCase
True iff the subject string is the NOT same as object string ignoring differences between upper and lower case.
Constants
- NAME
- URI
Public Instance Methods
Source
# File lib/rdf/n3/algebra/str/not_equal_ignoring_case.rb, line 13 def apply(left, right) RDF::Literal(super != RDF::Literal::TRUE) end
@param [RDF::Literal] left
a literal
@param [RDF::Literal] right
a literal
@return [RDF::Literal::Boolean]
Calls superclass method
RDF::N3::Algebra::Str::EqualIgnoringCase#apply