class KRPC::Types::DictionaryType
Attributes
key_type[R]
value_type[R]
Public Class Methods
new(pb_type)
click to toggle source
Calls superclass method
KRPC::Types::TypeBase::new
# File lib/krpc/types.rb, line 139 def initialize(pb_type) @key_type, @value_type = pb_type.types.map {|t| TypeStore[t] } super(pb_type, Hash) end