Class: Codabel::Type::AmountSign
- Inherits:
-
Codabel::Type
- Object
- Codabel::Type
- Codabel::Type::AmountSign
- Defined in:
- lib/codabel/type/amount_sign.rb
Instance Method Summary collapse
Methods inherited from Codabel::Type
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 |