Class: Protobuf::Field::Sfixed32Field
- Inherits:
-
Int32Field
- Object
- BaseField
- VarintField
- IntegerField
- Int32Field
- Protobuf::Field::Sfixed32Field
- Defined in:
- lib/protobuf/message/field.rb
Constant Summary
Constants inherited from VarintField
VarintField::INT32_MAX, VarintField::INT32_MIN, VarintField::INT64_MAX, VarintField::INT64_MIN, VarintField::UINT32_MAX, VarintField::UINT64_MAX
Instance Attribute Summary
Attributes inherited from BaseField
#default, #message_class, #name, #rule, #tag, #type
Instance Method Summary collapse
Methods inherited from Int32Field
Methods inherited from VarintField
#acceptable?, decode, default, encode
Methods inherited from BaseField
#acceptable?, #clear, default, #default_value, descriptor, #descriptor, #error_message, #get, #initialize, #initialized?, #max, #merge, #merge_array, #merge_value, #min, #optional?, #ready?, #repeated?, #required?, #set, #to_s, #typed_default_value
Constructor Details
This class inherits a constructor from Protobuf::Field::BaseField
Instance Method Details
#decode(bytes) ⇒ Object
500 501 502 503 504 |
# File 'lib/protobuf/message/field.rb', line 500 def decode(bytes) value = bytes.unpack('V').first value -= 0x1_0000_0000 if (value & 0x8000_0000).nonzero? value end |
#encode(value) ⇒ Object
506 507 508 |
# File 'lib/protobuf/message/field.rb', line 506 def encode(value) [value].pack('V') end |