From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/go/go%2Fimporter%2Findex.html | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 devdocs/go/go%2Fimporter%2Findex.html (limited to 'devdocs/go/go%2Fimporter%2Findex.html') diff --git a/devdocs/go/go%2Fimporter%2Findex.html b/devdocs/go/go%2Fimporter%2Findex.html deleted file mode 100644 index 57e52794..00000000 --- a/devdocs/go/go%2Fimporter%2Findex.html +++ /dev/null @@ -1,22 +0,0 @@ -

Package importer

Overview

Package importer provides access to export data importers.

Index

Package files

importer.go

func Default 1.5

func Default() types.Importer

Default returns an Importer for the compiler that built the running binary. If available, the result implements types.ImporterFrom.

-

func For 1.5

func For(compiler string, lookup Lookup) types.Importer

For calls ForCompiler with a new FileSet.

-

Deprecated: Use ForCompiler, which populates a FileSet with the positions of objects created by the importer.

-

func ForCompiler 1.12

func ForCompiler(fset *token.FileSet, compiler string, lookup Lookup) types.Importer

ForCompiler returns an Importer for importing from installed packages for the compilers "gc" and "gccgo", or for importing directly from the source if the compiler argument is "source". In this latter case, importing may fail under circumstances where the exported API is not entirely defined in pure Go source code (if the package API depends on cgo-defined entities, the type checker won't have access to those).

-

The lookup function is called each time the resulting importer needs to resolve an import path. In this mode the importer can only be invoked with canonical import paths (not relative or absolute ones); it is assumed that the translation to canonical import paths is being done by the client of the importer.

-

A lookup function must be provided for correct module-aware operation. Deprecated: If lookup is nil, for backwards-compatibility, the importer will attempt to resolve imports in the $GOPATH workspace.

-

type Lookup 1.5

A Lookup function returns a reader to access package data for a given import path, or an error if no matching package is found.

-
type Lookup func(path string) (io.ReadCloser, error)
-

- © Google, Inc.
Licensed under the Creative Commons Attribution License 3.0.
- http://golang.org/pkg/go/importer/ -

-
-- cgit v1.2.3