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

readFloat() public method

Read float.
public readFloat ( boolean $isCollectionElement = false ) : float
$isCollectionElement boolean
return float
    public function readFloat($isCollectionElement = false)
    {
        if ($isCollectionElement) {
            $this->readShort();
        }
        return unpack('f', strrev($this->read(4)))[1];
    }