Return map like ‘ok’ in Golang on normal functions
map is different because it is a built-in type and not a function. The 2 forms of accessing an element of a map is specified by the Go Language Specification: Index Expressions and backed by the compiler. With functions you can’t do this. If a function has 2 return values, you have to “expect” both … Read more