Class: HQMF::Range

Inherits:
Object
  • Object
show all
Defined in:
lib/tpg/ext/range.rb

Instance Method Summary collapse

Instance Method Details

#formatObject

Form an HQMF Range object into a shape that HealthDataStandards understands.

Returns:

  • A Range formatted for storing a HealthDataStandards Record.



6
7
8
9
10
11
12
# File 'lib/tpg/ext/range.rb', line 6

def format
  if low
    low.format
  elsif high
    high.format
  end
end