rustlings/exercises/standard_library_types
Alexx Roche 113cdae2d4
fix(arc1): Passively introduce attributes (#429)
Ensure that std::sync::Arc is actually used, as this exercise can be compiled using things already learnt in previous exercises.
2020-06-14 12:15:35 +02:00
..
README.md feat: Add box1.rs exercise 2020-05-26 21:46:24 +01:00
arc1.rs fix(arc1): Passively introduce attributes (#429) 2020-06-14 12:15:35 +02:00
box1.rs fix(box1): fix comment typo (#426) 2020-06-06 12:07:39 +02:00
iterators2.rs fix: update iterator and macro text for typos and clarity 2020-04-29 19:11:54 -07:00
iterators3.rs Merge branch 'master' into refactor-hints 2019-11-11 17:21:06 +01:00
iterators4.rs fix: update iterator and macro text for typos and clarity 2020-04-29 19:11:54 -07:00

README.md

For the Box exercise check out the chapter Using Box to Point to Data on the Heap.

For the Arc exercise check out the chapter Shared-State Concurrency of the Rust Book.

For the Iterator exercise check out the chapters Iterator of the Rust Book and the Iterator documentation. Do not adjust your monitors-- iterators1.rs is indeed missing. Iterators is a challenging topic, so we're leaving space for a simpler exercise!