Class: DBus::Data::Int32
Overview
Signed 32 bit integer.
Constant Summary collapse
- FORMAT =
Format.new("l<", "l>")
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Methods inherited from Int
Methods inherited from Fixed
Methods inherited from Basic
basic?, from_typed, type, #type
Methods inherited from Base
#==, assert_type_matches_class, basic?, #eql?, fixed?, from_typed, #initialize, #type
Constructor Details
This class inherits a constructor from DBus::Data::Int
Class Method Details
.alignment ⇒ Object
293 294 295 |
# File 'lib/dbus/data.rb', line 293 def self.alignment 4 end |
.range ⇒ Object
302 303 304 |
# File 'lib/dbus/data.rb', line 302 def self.range (-2_147_483_648..2_147_483_647) end |
.type_code ⇒ Object
289 290 291 |
# File 'lib/dbus/data.rb', line 289 def self.type_code "i" end |