Class: FHIR::Bundle

Inherits:
Object
  • Object
show all
Defined in:
lib/bundle.rb

Instance Method Summary collapse

Instance Method Details

#to_aObject



3
4
5
6
7
# File 'lib/bundle.rb', line 3

def to_a
  array = @entry.map(&:resource)
  array += next_bundle if next_bundle
  array
end