Class: Codabel::Type::AmountSign

Inherits:
Codabel::Type show all
Defined in:
lib/codabel/type/amount_sign.rb

Instance Method Summary collapse

Methods inherited from Codabel::Type

#check!

Instance Method Details

#to_coda(value, length) ⇒ Object



4
5
6
# File 'lib/codabel/type/amount_sign.rb', line 4

def to_coda(value, length)
  (value >= 0.0 ? '0' : '1').rjust(length, '0')
end