# File lib/ruby-uuid/uuid.rb, line 242 def to_int tmp = self.raw_bytes.unpack "C*" tmp.inject do |r, i| r * 256 | i end end