Class: Set

Inherits:
Object show all
Defined in:
lib/user_input.rb

Instance Method Summary collapse

Instance Method Details

#from_user_input(value) ⇒ Object



191
192
193
194
195
196
197
# File 'lib/user_input.rb', line 191

def from_user_input(value)
	each {|i|
		val = i.from_user_input(value)
		return val if val
	}
	return nil
end