红宝石 | BigDecimal precs函数
BigDecimal#precs() : precs()是一个 BigDecimal 类方法,用于检查 BigDecimal 值是否为 nan 值。
Syntax: BigDecimal.precs()
Parameter: BigDecimal values to check regarding the NaN value.
Return: true : if value is a NaN value otherwise return false
示例 #1:
# Ruby code for precs() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = BigDecimal('2')
# declaring BigDecimal
b = BigDecimal("100")
# declaring BigDecimal
c = BigDecimal("10 * 20")
# precs() method
puts "precs example 1 : #{a.precs()}\n\n"
puts "precs example 2 : #{b.precs()}\n\n"
输出 :
precs example 1 : [9, 18]
precs example 2 : [9, 18]
示例 #2:
# Ruby code for precs() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
c = BigDecimal("10 * 20")
# precs() method
puts "precs example 2 : #{c.precs()}\n\n"
输出 :
precs example 2 : [9, 18]