# File lib/bson/bson_ruby.rb, line 317 def deserialize_number_long_data(buf) unsigned = buf.get_long unsigned >= 2 ** 64 / 2 ? unsigned - 2**64 : unsigned end