rustlings

solving rustlings ft. dracuxan
git clone [email protected]:dracuxan/rustlings.git
Log | Files | Refs

README.md (1286B)


      1 # Exercise to Book Chapter mapping
      2 
      3 | Exercise               | Book Chapter        |
      4 | ---------------------- | ------------------- |
      5 | variables              | §3.1                |
      6 | functions              | §3.3                |
      7 | if                     | §3.5                |
      8 | primitive_types        | §3.2, §4.3          |
      9 | vecs                   | §8.1                |
     10 | move_semantics         | §4.1-2              |
     11 | structs                | §5.1, §5.3          |
     12 | enums                  | §6, §18.3           |
     13 | strings                | §8.2                |
     14 | modules                | §7                  |
     15 | hashmaps               | §8.3                |
     16 | options                | §10.1               |
     17 | error_handling         | §9                  |
     18 | generics               | §10                 |
     19 | traits                 | §10.2               |
     20 | lifetimes              | §10.3               |
     21 | tests                  | §11.1               |
     22 | iterators              | §13.2-4             |
     23 | smart_pointers         | §15, §16.3          |
     24 | threads                | §16.1-3             |
     25 | macros                 | §20.5               |
     26 | clippy                 | Appendix D          |
     27 | conversions            | n/a                 |