class DBus::Data::Int32

Signed 32 bit integer.

Constants

FORMAT

Public Class Methods

alignment() click to toggle source
# File lib/dbus/data.rb, line 293
def self.alignment
  4
end
format() click to toggle source
# File lib/dbus/data.rb, line 298
def self.format
  FORMAT
end
range() click to toggle source
# File lib/dbus/data.rb, line 302
def self.range
  (-2_147_483_648..2_147_483_647)
end
type_code() click to toggle source
# File lib/dbus/data.rb, line 289
def self.type_code
  "i"
end