evseevnn\Cassandra\Protocol\Response\DataStream::readDouble PHP Méthode

readDouble() public méthode

Read double.
public readDouble ( boolean $isCollectionElement = false ) : double
$isCollectionElement boolean
Résultat double
    public function readDouble($isCollectionElement = false)
    {
        if ($isCollectionElement) {
            $this->readShort();
        }
        return unpack('d', strrev($this->read(8)))[1];
    }