You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Maxim Mihajlov 7a0e6fcdc0 Update README.md for roman_numbers_iter 2 years ago
..
README.md Update README.md for roman_numbers_iter 2 years ago

README.md

roman_numbers_iter

Instructions

Implement the Iterator trait for the RomanNumber type. You should use the code from the previous exercise roman_numbers.

Notions

Expected Functions

//...

impl Iterator for RomanNumber {}

Usage

Here is a program to test your function.

use roman_numbers_iterator::RomanNumber;

fn main() {
	let mut number = RomanNumber::from(15);

	println!("{:?}", number);
	println!("{:?}", number.next());
}

And its output

$ cargo run
RomanNumber([X, V])
Some(RomanNumber([X, V, I]))
$