Method: XlsFunction::Evaluators::Functions::Fixed#eval

Defined in:
lib/xls_function/evaluators/functions/fixed.rb

#evalObject



15
16
17
18
19
20
21
22
23
# File 'lib/xls_function/evaluators/functions/fixed.rb', line 15

def eval
  rounded = round

  if no_format
    rounded.to_s
  else
    delimit(rounded)
  end
end