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

apply(left, right) click to toggle source

@param [RDF::Literal] left

a literal

@param [RDF::Literal] right

a literal

@return [RDF::Literal::Boolean]

# File lib/rdf/n3/algebra/str/not_equal_ignoring_case.rb, line 13
def apply(left, right)
  RDF::Literal(super != RDF::Literal::TRUE)
end