bytes | Package bytes implements functions for the manipulation of byte slices. |
encoding/gob | Package gob manages streams of gobs - binary values exchanged between an Encoder (transmitter) and a Decoder (receiver). |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
go/ast | Package ast declares the types used to represent syntax trees for Go packages. |
go/constant | Package constant implements Values representing untyped Go constants and their corresponding operations. |
go/format | Package format implements standard formatting of Go source. |
go/parser | Package parser implements a parser for Go source files. |
go/printer | Package printer implements printing of AST nodes. |
go/token | Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
go/types | Package types declares the data types and implements the algorithms for type-checking of Go packages. |
golang.org/x/tools/go/ast/astutil | Package astutil contains common utilities for working with the Go AST. |
golang.org/x/tools/go/types/typeutil | Package typeutil defines various utilities for types, such as Map, a hash table that maps types.Type to any value. |
golang.org/x/tools/imports | Package imports implements a Go pretty-printer (like package "go/format") that also adds or removes import statements as necessary. |
golang.org/x/tools/internal/analysisinternal | Package analysisinternal provides gopls' internal analyses with a number of helper functions that operate on typed syntax trees. |
golang.org/x/tools/internal/astutil | |
golang.org/x/tools/internal/typeparams | Package typeparams contains common utilities for writing tools that interact with generic Go code, as introduced with Go 1.18. |
golang.org/x/tools/internal/typesinternal | Package typesinternal provides access to internal go/types APIs that are not yet exported. |
path | Package path implements utility routines for manipulating slash-separated paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
slices | Package slices defines various functions useful with slices of any type. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |