evseevnn\Cassandra\Protocol\Response\DataStream::readDouble PHP Method

readDouble() public method

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