Involved Source Filesmanifest.go Package stdlib provides a table of all exported symbols in the
standard library, along with the version at which they first
appeared.
Package-Level Type Names (total 3, all are exported)
/* sort exporteds by: | */
A Kind indicates the kind of a symbol:
function, variable, constant, type, and so on.( Kind) String() string
Kind : expvar.Var
Kind : fmt.Stringer
Kind : context.stringer
Kind : github.com/aws/smithy-go/middleware.stringer
Kind : runtime.stringer
const Const
const Field
const Func
const Invalid
const Method
const Type
const Var
KindKindNamestring // Go version that first included the symbol SplitField splits the field symbol name into type and field
components. It must be called only on Field symbols.
Example: "File.Package" -> ("File", "Package") SplitMethod splits the method symbol name into pointer, receiver,
and method components. It must be called only on Method symbols.
Example: "(*Buffer).Grow" -> (true, "Buffer", "Grow")
A Version represents a version of Go of the form "go1.%d". String returns a version string of the form "go1.23", without allocating.
Version : expvar.Var
Version : fmt.Stringer
Version : context.stringer
Version : github.com/aws/smithy-go/middleware.stringer
Version : runtime.stringer
Package-Level Functions (total 2, in which 1 is exported)
HasPackage reports whether the specified package path is part of
the standard library's public API.