class RDF::N3::Algebra::Math::ATanH

The object is calulated as the inverse hyperbolic tangent value of the subject.

Constants

NAME
URI

Public Instance Methods

resolve(resource, position:) click to toggle source

The math:atanh operator takes string or number and calculates its inverse hyperbolic tangent.

@param [RDF::Term] resource @param [:subject, :object] position @return [RDF::Term] @see RDF::N3::ResourceOperator#evaluate

# File lib/rdf/n3/algebra/math/atanh.rb, line 15
def resolve(resource, position:)
  case position
  when :subject
    return nil unless resource.literal?
    as_literal(Math.atanh(resource.as_number.object))
  when :object
    return nil unless resource.literal? || resource.variable?
    resource
  end
end