Class: RDF::Literal::Numeric
- Inherits:
-
RDF::Literal
- Object
- RDF::Literal
- RDF::Literal::Numeric
- Defined in:
- lib/rdf/model/literal/numeric.rb
Overview
Shared methods and class ancestry for numeric literal classes.
Constant Summary
Constants inherited from RDF::Literal
FALSE, TRUE, XSD_STRING, ZERO
Instance Attribute Summary
Attributes inherited from RDF::Literal
#datatype, #direction, #language
Instance Method Summary collapse
-
#%(other) ⇒ RDF::Literal
Exponent − Performs remainder of
self
divided byother
. -
#*(other) ⇒ RDF::Literal::Numeric
Returns the product of
self
timesother
. -
#**(other) ⇒ RDF::Literal::Numeric
Exponent − Performs exponential (power) calculation on operators.
-
#+(other) ⇒ RDF::Literal::Numeric
Returns the sum of
self
plusother
. -
#+@ ⇒ RDF::Literal::Numeric
Returns
self
. -
#-(other) ⇒ RDF::Literal::Numeric
Returns the difference of
self
minusother
. -
#-@ ⇒ RDF::Literal::Numeric
Returns
self
negated. -
#/(other) ⇒ RDF::Literal::Numeric
Returns the quotient of
self
divided byother
. -
#<=>(other) ⇒ Integer
Compares this literal to
other
for sorting purposes. -
#==(other) ⇒ Boolean
Returns
true
if this literal is equal toother
. -
#abs ⇒ RDF::Literal
Returns the absolute value of
self
. -
#acos ⇒ Double
Returns the arc cosine of the argument.
-
#asin ⇒ Double
Returns the arc sine of the argument.
-
#atan ⇒ Double
Returns the arc tangent of the argument.
-
#atan2(arg) ⇒ Double
Returns the angle in radians subtended at the origin by the point on a plane with coordinates (x, y) and the positive x-axis.
-
#ceil ⇒ RDF::Literal
Returns the smallest integer greater than or equal to
self
. -
#cos ⇒ Double
Returns the cosine of the argument.
-
#exp ⇒ Double
Returns the value of
e
<sup>x
</sup>. -
#exp10 ⇒ Double
Returns the value of
10
<sup>x
</sup>. -
#floor ⇒ RDF::Literal
Returns the largest integer less than or equal to
self
. -
#log ⇒ Double
Returns the natural logarithm of the argument.
-
#log10 ⇒ Double
Returns the base-ten logarithm of the argument.
-
#round ⇒ RDF::Literal
Returns the number with no fractional part that is closest to the argument.
-
#sin ⇒ Double
Returns the sine of the argument.
-
#sqrt ⇒ Double
Returns the non-negative square root of the argument.
-
#tan ⇒ Double
Returns the tangent of the argument.
-
#to_d ⇒ BigDecimal
Returns the value as a decimal number.
-
#to_f ⇒ Float
Returns the value as a floating point number.
-
#to_i ⇒ Integer
(also: #to_int, #ord)
Returns the value as an integer.
-
#to_r ⇒ Rational
Returns the value as a rational number.
Methods inherited from RDF::Literal
#canonicalize!, #compatible?, #comperable_datatype2?, #comperable_datatype?, #datatype?, #direction?, #english?, #eql?, #escape, #hash, #humanize, #initialize, #inspect, #language?, #literal?, #method_missing, #object, #plain?, #respond_to_missing?, #simple?, #squish, #squish!, #to_s, #valid?, #validate!, #value, #value_hash
Methods included from Term
#compatible?, #eql?, #escape, #term?, #terms, #to_base, #to_term
Methods included from Value
#anonymous?, #canonicalize, #canonicalize!, #constant?, #graph?, #inspect, #inspect!, #invalid?, #iri?, #list?, #literal?, #node?, #resource?, #start_with?, #statement?, #term?, #to_nquads, #to_ntriples, #to_rdf, #to_term, #type_error, #uri?, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from RDF::Literal
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RDF::Literal
Instance Method Details
#%(other) ⇒ RDF::Literal
Exponent − Performs remainder of self
divided by other
.
From the XQuery function math:mod.
157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/rdf/model/literal/numeric.rb', line 157 def %(other) if self.class == Double || [Double, ::Float].include?(other.class) self.class.new(to_f % other.to_f) elsif ((self.class == RDF::Literal::Float || other.class == RDF::Literal::Float) rescue false) self.class.new(to_f % other.to_f) elsif self.class == Decimal || other.class == Decimal self.class.new(to_d % (other.respond_to?(:to_d) ? other.to_d : BigDecimal(other.to_s))) else self.class.new(to_i % other.to_i) end end |
#*(other) ⇒ RDF::Literal::Numeric
Returns the product of self
times other
.
From the XQuery function op:numeric-multiply.
119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/rdf/model/literal/numeric.rb', line 119 def *(other) if self.class == Double || [Double, ::Float].include?(other.class) RDF::Literal::Double.new(to_f * other.to_f) elsif ((self.class == RDF::Literal::Float || other.class == RDF::Literal::Float) rescue false) RDF::Literal::Float.new(to_f * other.to_f) elsif self.class == Decimal || other.class == Decimal RDF::Literal::Decimal.new(to_d * (other.respond_to?(:to_d) ? other.to_d : BigDecimal(other.to_s))) else RDF::Literal::Integer.new(to_i * other.to_i) end end |
#**(other) ⇒ RDF::Literal::Numeric
Exponent − Performs exponential (power) calculation on operators.
Promotes values, as necessary, with the result type depending on the input values.
From the XQuery function math:pow.
142 143 144 145 146 |
# File 'lib/rdf/model/literal/numeric.rb', line 142 def **(other) RDF::Literal(object ** (other.is_a?(RDF::Literal::Numeric) ? other.object : other)) rescue ZeroDivisionError RDF::Literal::Double.new('INF') end |
#+(other) ⇒ RDF::Literal::Numeric
For xs:float
or xs:double
values, if one of the operands is a zero or a finite number and the other is INF
or -INF
, INF
or -INF
is returned. If both operands are INF
, INF
is returned. If both operands are -INF
, -INF
is returned. If one of the operands is INF
and the other is -INF
, NaN
is returned.
Returns the sum of self
plus other
.
From the XQuery function op:numeric-add.
77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/rdf/model/literal/numeric.rb', line 77 def +(other) if self.class == Double || [Double, ::Float].include?(other.class) RDF::Literal::Double.new(to_f + other.to_f) elsif ((self.class == RDF::Literal::Float || other.class == RDF::Literal::Float) rescue false) RDF::Literal::Float.new(to_f + other.to_f) elsif self.class == Decimal || other.class == Decimal RDF::Literal::Decimal.new(to_d + (other.respond_to?(:to_d) ? other.to_d : BigDecimal(other.to_s))) else RDF::Literal::Integer.new(to_i + other.to_i) end end |
#+@ ⇒ RDF::Literal::Numeric
Returns self
.
54 55 56 |
# File 'lib/rdf/model/literal/numeric.rb', line 54 def +@ self # unary plus end |
#-(other) ⇒ RDF::Literal::Numeric
Returns the difference of self
minus other
.
From the XQuery function op:numeric-subtract.
98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/rdf/model/literal/numeric.rb', line 98 def -(other) if self.class == Double || [Double, ::Float].include?(other.class) RDF::Literal::Double.new(to_f - other.to_f) elsif ((self.class == RDF::Literal::Float || other.class == RDF::Literal::Float) rescue false) RDF::Literal::Float.new(to_f - other.to_f) elsif self.class == Decimal || other.class == Decimal RDF::Literal::Decimal.new(to_d - (other.respond_to?(:to_d) ? other.to_d : BigDecimal(other.to_s))) else RDF::Literal::Integer.new(to_i - other.to_i) end end |
#-@ ⇒ RDF::Literal::Numeric
Returns self
negated.
63 64 65 |
# File 'lib/rdf/model/literal/numeric.rb', line 63 def -@ self.class.new(-self.object) end |
#/(other) ⇒ RDF::Literal::Numeric
Returns the quotient of self
divided by other
.
As a special case, if the types of both $arg1 and $arg2 are xsd:integer, then the return type is xsd:decimal.
From the XQuery function op:numeric-divide.
182 183 184 185 186 187 188 189 190 |
# File 'lib/rdf/model/literal/numeric.rb', line 182 def /(other) if self.class == Double || [Double, ::Float].include?(other.class) RDF::Literal::Double.new(to_f / other.to_f) elsif ((self.class == RDF::Literal::Float || other.class == RDF::Literal::Float) rescue false) RDF::Literal::Float.new(to_f / other.to_f) else RDF::Literal::Decimal.new(to_d / (other.respond_to?(:to_d) ? other.to_d : BigDecimal(other.to_s))) end end |
#<=>(other) ⇒ Integer
Compares this literal to other
for sorting purposes.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/rdf/model/literal/numeric.rb', line 13 def <=>(other) # If lexically invalid, use regular literal testing return super unless self.valid? && (!other.respond_to?(:valid?) || other.valid?) case other when ::Numeric to_d <=> other when Double to_f <=> other.to_f when Numeric to_d <=> other.to_d else super end end |
#==(other) ⇒ Boolean
Returns true
if this literal is equal to other
.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/rdf/model/literal/numeric.rb', line 34 def ==(other) # If lexically invalid, use regular literal testing return super unless self.valid? && (!other.respond_to?(:valid?) || other.valid?) case other when Literal::Numeric (cmp = (self <=> other)) ? cmp.zero? : false when RDF::URI, RDF::Node # Interpreting SPARQL data-r2/expr-equal/eq-2-2, numeric can't be compared with other types type_error("unable to determine whether #{self.inspect} and #{other.inspect} are equivalent") else super end end |
#abs ⇒ RDF::Literal
Returns the absolute value of self
.
From the XQuery function fn:abs.
200 201 202 |
# File 'lib/rdf/model/literal/numeric.rb', line 200 def abs raise NotImplementedError end |
#acos ⇒ Double
Returns the arc cosine of the argument.
344 345 346 347 348 |
# File 'lib/rdf/model/literal/numeric.rb', line 344 def acos Double.new(Math.acos(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#asin ⇒ Double
Returns the arc sine of the argument.
333 334 335 336 337 |
# File 'lib/rdf/model/literal/numeric.rb', line 333 def asin Double.new(Math.asin(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#atan ⇒ Double
Returns the arc tangent of the argument.
355 356 357 358 359 |
# File 'lib/rdf/model/literal/numeric.rb', line 355 def atan Double.new(Math.atan(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#atan2(arg) ⇒ Double
Returns the angle in radians subtended at the origin by the point on a plane with coordinates (x, y) and the positive x-axis.
367 368 369 370 371 |
# File 'lib/rdf/model/literal/numeric.rb', line 367 def atan2(arg) Double.new(Math.atan2(self.to_f, arg.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#ceil ⇒ RDF::Literal
Returns the smallest integer greater than or equal to self
.
From the XQuery function fn:ceil.
226 227 228 |
# File 'lib/rdf/model/literal/numeric.rb', line 226 def ceil self end |
#cos ⇒ Double
Returns the cosine of the argument. The argument is an angle in radians.
311 312 313 314 315 |
# File 'lib/rdf/model/literal/numeric.rb', line 311 def cos Double.new(Math.cos(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#exp ⇒ Double
Returns the value of e
<sup>x
</sup>.
249 250 251 |
# File 'lib/rdf/model/literal/numeric.rb', line 249 def exp Double.new(Math.exp(self.to_f)) end |
#exp10 ⇒ Double
Returns the value of 10
<sup>x
</sup>.
258 259 260 |
# File 'lib/rdf/model/literal/numeric.rb', line 258 def exp10 Double.new(10**self.to_f) end |
#floor ⇒ RDF::Literal
Returns the largest integer less than or equal to self
.
From the XQuery function fn:floor.
240 241 242 |
# File 'lib/rdf/model/literal/numeric.rb', line 240 def floor self end |
#log ⇒ Double
Returns the natural logarithm of the argument.
267 268 269 270 271 |
# File 'lib/rdf/model/literal/numeric.rb', line 267 def log Double.new(Math.log(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#log10 ⇒ Double
Returns the base-ten logarithm of the argument.
278 279 280 281 282 |
# File 'lib/rdf/model/literal/numeric.rb', line 278 def log10 Double.new(Math.log10(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#round ⇒ RDF::Literal
Returns the number with no fractional part that is closest to the argument. If there are two such numbers, then the one that is closest to positive infinity is returned. An error is raised if arg is not a numeric value.
From the XQuery function fn:round.
212 213 214 |
# File 'lib/rdf/model/literal/numeric.rb', line 212 def round raise NotImplementedError end |
#sin ⇒ Double
Returns the sine of the argument. The argument is an angle in radians.
300 301 302 303 304 |
# File 'lib/rdf/model/literal/numeric.rb', line 300 def sin Double.new(Math.sin(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#sqrt ⇒ Double
Returns the non-negative square root of the argument.
289 290 291 292 293 |
# File 'lib/rdf/model/literal/numeric.rb', line 289 def sqrt Double.new(Math.sqrt(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#tan ⇒ Double
Returns the tangent of the argument. The argument is an angle in radians.
322 323 324 325 326 |
# File 'lib/rdf/model/literal/numeric.rb', line 322 def tan Double.new(Math.tan(self.to_f)) rescue Math::DomainError Double.new(::Float::NAN) end |
#to_d ⇒ BigDecimal
Returns the value as a decimal number.
398 399 400 401 402 |
# File 'lib/rdf/model/literal/numeric.rb', line 398 def to_d @object.respond_to?(:to_d) ? @object.to_d : BigDecimal(@object.to_s) rescue FloatDomainError ::Float::NAN end |
#to_f ⇒ Float
Returns the value as a floating point number.
The usual accuracy limits and errors of binary float arithmetic apply.
390 391 392 |
# File 'lib/rdf/model/literal/numeric.rb', line 390 def to_f @object.to_f end |
#to_i ⇒ Integer Also known as: to_int, ord
Returns the value as an integer.
377 378 379 |
# File 'lib/rdf/model/literal/numeric.rb', line 377 def to_i @object.to_i end |
#to_r ⇒ Rational
Returns the value as a rational number.
408 409 410 |
# File 'lib/rdf/model/literal/numeric.rb', line 408 def to_r @object.to_r end |