Ferreteria/v0.6/clade/@removed/IO/Aspect/Connx/Buffer/@fx/RemoveBytes

From Woozle Writes Code
Jump to navigation Jump to search

Code

as of 2025-12-11:

#
    public function RemoveBytes() : string {
        $this->ErrorIfShut('read from');
        $sOut = $this->sBuff;
        $nLen = strlen($sOut);
        $this->nSpent += $nLen;
        $this->sBuff = '';
        return $sOut;
    }