SimplePie_HTTP_Parser::is_linear_whitespace PHP Method

is_linear_whitespace() public method

See if the next character is LWS
public is_linear_whitespace ( ) : boolean
return boolean true if the next character is LWS, false if not
    function is_linear_whitespace()
    {
        return (bool) ($this->data[$this->position] === "\t" || $this->data[$this->position] === " " || $this->data[$this->position] === "\n" && isset($this->data[$this->position + 1]) && ($this->data[$this->position + 1] === "\t" || $this->data[$this->position + 1] === " "));
    }