Go Maps
Jump to navigation
Jump to search
Internal
Overview
A map is an unordered collection of key-value pairs.
Declaration
Long Declaration
var map_identifier map[key_type]value_type
Example:
var m map[string]string
A map is an unordered collection of key-value pairs.
var map_identifier map[key_type]value_type
Example:
var m map[string]string