// Package path implements utility routines for manipulating slash-separated// paths.//// The path package should only be used for paths separated by forward// slashes, such as the paths in URLs. This package does not deal with// Windows paths with drive letters or backslashes; to manipulate// operating system paths, use the [path/filepath] package.packagepath
packageregexp// Regexp is the representation of a compiled regular expression.// A Regexp is safe for concurrent use by multiple goroutines,// except for configuration methods, such as Longest.typeRegexpstruct{...}
packageio// A LimitedReader reads from R but limits the amount of// data returned to just N bytes. Each call to Read// updates N to reflect the new amount remaining.// Read returns EOF when N <= 0.typeLimitedReaderstruct{RReader// underlying readerNint64// max bytes remaining}
packagecomment// A Printer is a doc comment printer.// The fields in the struct can be filled in before calling// any of the printing methods// in order to customize the details of the printing process.typePrinterstruct{// HeadingLevel is the nesting level used for// HTML and Markdown headings.// If HeadingLevel is zero, it defaults to level 3,// meaning to use <h3> and ###.HeadingLevelint...}
packagestrconv// Quote returns a double-quoted Go string literal representing s.// The returned string uses Go escape sequences (\t, \n, \xFF, \u0100)// for control characters and non-printable characters as defined by IsPrint.funcQuote(sstring)string{...}
packageos// Exit causes the current program to exit with the given status code.// Conventionally, code zero indicates success, non-zero an error.// The program terminates immediately; deferred functions are not run.//// For portability, the status code should be in the range [0, 125].funcExit(codeint){...}