Class: Values::Parser::Unquoted
Instance Attribute Summary
Attributes inherited from Token
Instance Method Summary collapse
-
#initialize(value) ⇒ Unquoted
constructor
A new instance of Unquoted.
Methods inherited from Token
#quoted?, #triple_quoted?, #unquoted?
Constructor Details
#initialize(value) ⇒ Unquoted
Returns a new instance of Unquoted.
25 |
# File 'lib/csv11.rb', line 25 def initialize( value ) super( 'UNQUOTED', value ); end |