mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
17 lines
515 B
Rust
17 lines
515 B
Rust
//! Assignment 7: Mastering advanced types (2/2).
|
|
//!
|
|
//! The primary goal of this assignment is to understand generics, traits, and lifetimes.
|
|
//!
|
|
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade-07.sh` works fine.
|
|
//! See `assignment07/*_grade.rs` and `/scripts/grade-07.sh` for the test script.
|
|
|
|
pub mod generator;
|
|
pub mod my_itertools;
|
|
pub mod small_exercises;
|
|
pub mod transform;
|
|
|
|
mod generator_grade;
|
|
mod my_itertools_grade;
|
|
mod small_exercises_grade;
|
|
mod transform_grade;
|