data_structures_SD 0.1.1

This is a collection of data structures. In other words a collection of ways to handle your data in your code and/or program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# DATA_STRUCTURES


## Content:

* [Dictionary]#dictionary
  * a list of key-data pairs

---
## Dictionary


### Explanation:

The [`Dictionary`](https://docs.rs/data_structures_SD/0.1.0/data_structures_SD/lists/dictionary/struct.Dictionary.html) is a data structur, that is containing key-data pairs. That means, that you need the key of the pair to get the data. Like you look in a dictonary for the translation of bottle (key) in german. In this example the return value (data) would be the word Flasche.

### Turtorial:


comming soon...