Class: Numeric

Inherits:
Object
  • Object
show all
Defined in:
lib/fat_core/numeric.rb

Instance Method Summary collapse

Instance Method Details

#commas(places = nil) ⇒ Object


12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/fat_core/numeric.rb', line 12

def commas(places = nil)
  # By default, use zero places for whole numbers; four places for
  # numbers containing a fractional part to 4 places.
  if places.nil?
    places =
      if abs.modulo(1).round(4) > 0.0
        4
      else
        0
      end
  end
  group(places, ',')
end

#format_by(fmt = nil) ⇒ Object

Format the number according to the given sprintf format. Besides the sprintf formats, a format string of ‘%,2’, for example, will return the number grouped by commas and rounded to 2 places. If no number of places is given, the number will be rounded to an integer.


85
86
87
88
89
90
91
92
93
# File 'lib/fat_core/numeric.rb', line 85

def format_by(fmt = nil)
  return to_s unless fmt
  if /%,(?<places>\d*)/ =~ fmt.to_s.clean
    places ||= 0
    commas(places.to_i)
  else
    format fmt, self
  end
end

#group(places = 0, delim = ',') ⇒ Object


26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fat_core/numeric.rb', line 26

def group(places = 0, delim = ',')
  # Return number as a string with embedded commas
  # for nice printing; round to places places after
  # the decimal

  # Only convert to string numbers with exponent unless they are
  # less than 1 (to ensure that really small numbers round to 0.0)
  return to_s if abs > 1.0 && to_s =~ /e/

  str = to_f.round(places).to_s

  # Break the number into parts
  str =~ /^(-)?(\d*)((\.)?(\d*))?$/
  neg = $1 || ''
  whole = $2
  frac = $5

  # Pad out the fractional part with zeroes to the right
  n_zeroes = [places - frac.length, 0].max
  frac += '0' * n_zeroes if n_zeroes > 0

  # Place the commas in the whole part only
  whole = whole.reverse
  whole.gsub!(/([0-9]{3})/, "\\1#{delim}")
  whole.gsub!(/#{Regexp.escape(delim)}$/, '')
  whole.reverse!
  if frac.nil? || places <= 0
    neg + whole
  else
    neg + whole + '.' + frac
  end
end

#int_if_wholeObject

Return an integer type, but only if the fractional part of self is zero


66
67
68
# File 'lib/fat_core/numeric.rb', line 66

def int_if_whole
  whole? ? floor : self
end

#secs_to_hmsObject


70
71
72
73
74
75
76
77
78
79
# File 'lib/fat_core/numeric.rb', line 70

def secs_to_hms
  frac = self % 1
  mins, secs = divmod(60)
  hrs, mins = mins.divmod(60)
  if frac.round(5) > 0.0
    '%02d:%02d:%02d.%d' % [hrs, mins, secs, frac.round(5) * 100]
  else
    '%02d:%02d:%02d' % [hrs, mins, secs]
  end
end

#signumObject


2
3
4
5
6
7
8
9
10
# File 'lib/fat_core/numeric.rb', line 2

def signum
  if self > 0
    1
  elsif self < 0
    -1
  else
    0
  end
end

#tex_quoteObject

Allow erb documents can directly interpolate numbers


96
97
98
# File 'lib/fat_core/numeric.rb', line 96

def tex_quote
  to_s
end

#whole?Boolean

Determine if this is a whole number.

Returns:

  • (Boolean)

60
61
62
# File 'lib/fat_core/numeric.rb', line 60

def whole?
  floor == self
end