Class: Integer

Inherits:
Object show all
Defined in:
lib/xapian_fu/xapian_doc_value_accessor.rb

Overview

:nodoc:

Class Method Summary collapse

Class Method Details

.from_xapian_fu_storage_value(value) ⇒ Object



11
12
13
# File 'lib/xapian_fu/xapian_doc_value_accessor.rb', line 11

def self.from_xapian_fu_storage_value(value)
  value.unpack("G").first.truncate rescue nil
end

.to_xapian_fu_storage_value(value) ⇒ Object



4
5
6
7
8
9
# File 'lib/xapian_fu/xapian_doc_value_accessor.rb', line 4

def self.to_xapian_fu_storage_value(value)
  if value > 0x1fffffffffffff or value < -0x1fffffffffffff
    raise XapianFu::ValueOutOfBounds
  end
  [value].pack("G")
end