diff options
Diffstat (limited to 'content/go-maps-in-action.article')
-rw-r--r-- | content/go-maps-in-action.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/go-maps-in-action.article b/content/go-maps-in-action.article index 42aaa47..8bcda9e 100644 --- a/content/go-maps-in-action.article +++ b/content/go-maps-in-action.article @@ -1,7 +1,7 @@ # Go maps in action 6 Feb 2013 Tags: map, technical -Summary: One of the most useful data structures in computer science is the hash table. Many hash table implementations exist with varying properties, but in general they offer fast lookups, adds, and deletes. Go provides a built-in map type that implements a hash table. +Summary: How and when to use Go maps. Andrew Gerrand |