我是 Go 的新手,我正在尝试用这个一般方面构建一个函数:
mapOfResults = ThingDoer([
["One", int, -1, true],
["Flying", string, "", true],
["Banana", bool, false, true]
])
但我什至无法弄清楚它的签名(签名甚至是 Go 中它的专有名词吗?它所有参数的定义等)。
我说的是这个结构:
func ThingDoer(config ThisIsWhatICannotFigure) map[string]Results {
// the body of my function
}
如何定义此类参数的类型?
弑天下
相关分类