kubernetes/vendor/golang.org/x/net/html/atom/atom.go

type Atom

// String returns the atom's name.
func (a Atom) String() string {}

func (a Atom) string() string {}

// fnv computes the FNV hash with an arbitrary starting value h.
func fnv(h uint32, s []byte) uint32 {}

func match(s string, t []byte) bool {}

// Lookup returns the atom whose name is s. It returns zero if there is no
// such atom. The lookup is case sensitive.
func Lookup(s []byte) Atom {}

// String returns a string whose contents are equal to s. In that sense, it is
// equivalent to string(s) but may be more efficient.
func String(s []byte) string {}