Class: Codabel::Type::Duplicate

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

Instance Method Summary collapse

Methods inherited from Codabel::Type

#check!

Instance Method Details

#to_coda(value, length) ⇒ Object



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

def to_coda(value, length)
  str = value ? 'D' : ' '
  str.rjust(length, ' ')
end