13 14 15 16
# File 'lib/records/bintypes.rb', line 13 def set(v) self.low = v & 0xFF self.high = (v & 0xFF00) >> 8 end