Esempio n. 1
0
 public function getLLong()
 {
     return Binary::readLLong($this->get(8));
 }
Esempio n. 2
0
 public function getLong()
 {
     return $this->endianness === self::BIG_ENDIAN ? Binary::readLong($this->get(8)) : Binary::readLLong($this->get(8));
 }