Coseva\CSV::collectGarbage PHP Method

collectGarbage() public method

Whether or not to use garbage collection after parsing.
public collectGarbage ( boolean $collect = true ) : CSV
$collect boolean
return CSV $this
    public function collectGarbage($collect = true)
    {
        $this->_garbageCollection = (bool) $collect;
        return $this;
    }