Versions in this module Expand all Collapse all v1 v1.0.2 Oct 24, 2024 Changes in this version + type Parser struct + func New(b []byte) *Parser + func NewString(s string) *Parser + func (p *Parser) Advance() + func (p *Parser) CutPrefix(skip []byte) bool + func (p *Parser) Peek() byte + func (p *Parser) Read() byte + func (p *Parser) ReadByte() (byte, error) + func (p *Parser) ReadIdentifier() (string, bool) + func (p *Parser) ReadNumber() int + func (p *Parser) ReadSep(sep byte) ([]byte, bool) + func (p *Parser) Remaining() []byte + func (p *Parser) Reset(b []byte) + func (p *Parser) Skip(skip byte) error + func (p *Parser) SkipPrefix(skip []byte) error + func (p *Parser) Unread() + func (p *Parser) Valid() bool