Class: Stupidedi::Versions::Common::ElementTypes::FixnumVal::Valid
Instance Attribute Summary
#position, #usage
Instance Method Summary
collapse
empty, #numeric?, #too_long?, #too_short?, value
#allowed?, #component?, #date?, #id?, #initialize, #leaf?, #numeric?, #simple?, #string?, #time?, #to_s, #to_x12, #too_long?, #too_short?
#element?, #size
#blank?, #characters, #component?, #composite?, #definition, #descriptor, #element?, #empty?, #functional_group?, #interchange?, #invalid?, #leaf?, #loop?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #table?, #transaction_set?, #transmission?
Methods included from Color
ansi, #ansi
Methods included from Inspect
#inspect
Instance Method Details
#==(other)
140
141
142
143
|
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 140
def ==(other)
other = FixnumVal.value(other, usage, position)
other.valid? and other.value == value
end
|
#coerce(other)
136
137
138
|
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 136
def coerce(other)
return FixnumVal.value(other, usage, position), self
end
|
#copy(changes = {}) ⇒ Empty
129
130
131
132
133
134
|
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 129
def copy(changes = {})
FixnumVal.value \
changes.fetch(:value, value),
changes.fetch(:usage, usage),
changes.fetch(:position, position)
end
|
124
125
126
|
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 124
def map
FixnumVal.value(yield(value), usage, position)
end
|
#valid? ⇒ Boolean
119
120
121
|
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 119
def valid?
true
end
|