Class: DBus::Data::UInt64

Inherits:
Int show all
Defined in:
lib/dbus/data.rb

Overview

Unsigned 64 bit integer.

Constant Summary collapse

FORMAT =
Format.new("Q<", "Q>")

Instance Attribute Summary

Attributes inherited from Base

#value

Class Method Summary collapse

Methods inherited from Int

#initialize

Methods inherited from Fixed

fixed?, from_raw, #marshall

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

.alignmentObject



360
361
362
# File 'lib/dbus/data.rb', line 360

def self.alignment
  8
end

.formatObject



365
366
367
# File 'lib/dbus/data.rb', line 365

def self.format
  FORMAT
end

.rangeObject



369
370
371
# File 'lib/dbus/data.rb', line 369

def self.range
  (0..18_446_744_073_709_551_615)
end

.type_codeObject



356
357
358
# File 'lib/dbus/data.rb', line 356

def self.type_code
  "t"
end