We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, https://github.com/jmcvetta/golang-for-python-programmers/blob/master/source/layout.rst says that Functions imported from another package are always namespaced with the package name., but what about import . "lib/math" from https://golang.org/ref/spec#Import_declarations ? I'm not clear on what you really mean when you say that it is "always" given that the dot import is valid.
Functions imported from another package are always namespaced with the package name.
import . "lib/math"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
https://github.com/jmcvetta/golang-for-python-programmers/blob/master/source/layout.rst
says that
Functions imported from another package are always namespaced with the package name.
, but what aboutimport . "lib/math"
from https://golang.org/ref/spec#Import_declarations ? I'm not clear on what you really mean when you say that it is "always" given that the dot import is valid.
The text was updated successfully, but these errors were encountered: