Class: TJSON::DataType::NonScalar

Inherits:
TJSON::DataType show all
Defined in:
lib/tjson/datatype.rb

Overview

Non-scalar types

Direct Known Subclasses

Array, Object, Set

Constant Summary

Constants inherited from TJSON::DataType

TAGS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from TJSON::DataType

[], #decode, #encode, encode, identify_type, parse, #tag

Constructor Details

#initialize(inner_type) ⇒ NonScalar

Returns a new instance of NonScalar.



71
72
73
# File 'lib/tjson/datatype.rb', line 71

def initialize(inner_type)
  @inner_type = inner_type
end

Instance Attribute Details

#inner_typeObject (readonly)

Returns the value of attribute inner_type.



69
70
71
# File 'lib/tjson/datatype.rb', line 69

def inner_type
  @inner_type
end

Instance Method Details

#==(other) ⇒ Object



79
80
81
# File 'lib/tjson/datatype.rb', line 79

def ==(other)
  self.class == other.class && inner_type == other.inner_type
end

#inspectObject



75
76
77
# File 'lib/tjson/datatype.rb', line 75

def inspect
  "#<#{self.class}<#{@inner_type.inspect}>>"
end