我正在学习golang。我正在寻找一种方便的方法来探索特定 go 包中的功能。比如常用的strings包。
2 回答
鸿蒙传说
TA贡献1865条经验 获得超7个赞
试试https://github.com/fatih/vim-go。
它具有包的 linting 功能。检查文档https://github.com/fatih/vim-go/blob/master/doc/vim-go.txt
杨魅力
TA贡献1811条经验 获得超6个赞
一个有助于我学习围棋的简单方法是go doc <pkg>
go doc strings
package strings // import "strings"
Package strings implements simple functions to manipulate UTF-8 encoded
strings.
For information about UTF-8 strings in Go, see
https://blog.golang.org/strings.
func Compare(a, b string) int
func Contains(s, substr string) bool
func ContainsAny(s, chars string) bool
.
.
.
.
同样,我是新来的编程语言。我在 python 中寻找类似于 dir() 的东西。请参考 go (go --help) 中的帮助,到目前为止它很有帮助。
如果有人有任何建议或可以指出更好的方法,请告诉我。
- 2 回答
- 0 关注
- 143 浏览
添加回答
举报
0/150
提交
取消