This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| snippets:golang:containers:start [2018/03/20 14:00] – allspark | snippets:golang:containers:start [2018/03/20 14:01] (current) – allspark | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | # golang | + | # Containers |
| - | ## simple example containers | ||
| - | Datenstrukturen um Daten innerhalb eines Programms zu verwalten. | + | < |
| - | + | The Containers library is a generic collection of class templates and algorithms that allow programmers to easily implement common data structures like queues, lists and stacks. There are three classes of containers -- sequence containers, associative containers, and unordered associative containers -- each of which is designed to support a different set of operations. | |
| - | < | + | |
| The container manages the storage space that is allocated for its elements and provides member functions to access them, either directly or through iterators (objects with properties similar to pointers). | The container manages the storage space that is allocated for its elements and provides member functions to access them, either directly or through iterators (objects with properties similar to pointers). | ||
| Line 13: | Line 11: | ||
| < | < | ||
| </ | </ | ||
| + | |||
| + | |||
| + | # containers in go | ||
| + | |||
| + | [[https:// | ||
| + | |||
| + | ## simple example containers in golang | ||
| {{indexmenu> | {{indexmenu> | ||