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
  • Coverage
  • 100%
    20 out of 20 items documented15 out of 17 items with examples
  • Size
  • Source code size: 13.46 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.99 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • SnefDenGames/data_structures
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SnefDenGames

DATA_STRUCTURES

Content:


Dictionary

Explanation:

The Dictionary 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...