An open API service indexing awesome lists of open source software.

https://github.com/4cecoder/gdatatype

Golang Data Type & Examples
https://github.com/4cecoder/gdatatype

data-structures data-types-and-structures datatypes go

Last synced: 4 months ago
JSON representation

Golang Data Type & Examples

Awesome Lists containing this project

README

        

# Go Data Types

[Primitive Types Reference](https://devhints.io/go)

### Data Structure Catagories

| Linear | Non-Linear | Homogeneous | Heterogeneous | Dynamic |
| ------------- | ------------- | ------------- | ------------- | ------------- |
| [Lists](docs/linear/lists.md) | [Trees](docs/nonlinear/trees.md) |[2D Arrays](docs/homogeneous/2darrays.md) |[Linked Lists](docs/heterogeneous/linkedlists.md) | [Dictionaries](docs/dynamic/dictionaries.md) |
| [Sets](docs/linear/sets.md) | [Tables](docs/nonlinear/tables.md) | [MultiD Arrays](docs/homogeneous/multidarrays.md) | [Ordered Lists](docs/heterogeneous/orderedlists.md) | [Tree Sets](docs/dynamic/treesets.md) |
| [Tuples](docs/linear/tuples.md) | [Containers](docs/nonlinear/containers.md) | | [Unordered Lists](docs/heterogeneous/unorderedlists.md) | [Sequences](docs/dynamic/sequences.md) |
| [Queues](docs/linear/queues.md) | | | | |
| [Stacks](docs/linear/stacks.md) | | | | |
| [Heaps](docs/linear/heaps.md) | | | | |