class OpenEhr::RM::Support::AssumedTypes::List

Attributes

content[R]

Public Class Methods

new(arg) click to toggle source
# File lib/open_ehr/rm/support/assumed_types.rb, line 25
def initialize(arg)
  @content = arg
end

Public Instance Methods

first() click to toggle source
# File lib/open_ehr/rm/support/assumed_types.rb, line 29
def first
  @content.first
end
last() click to toggle source
# File lib/open_ehr/rm/support/assumed_types.rb, line 33
def last
  @content.last
end