Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
set(value)
public
set accepts a string which
follows lexical space (ex. String: “+123”),
or an object which follows canonical space (ex. Integer: 123).
# File lib/xsd/datatypes.rb, line 133
def set(value)
if value.nil?
@is_nil = true
@data = nil
_set(nil)
else
@is_nil = false
_set(screen_data(value))
end
end