1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! # Cargo Extras
//!
//! I wrote this example while following along with the
//! rust book from this chapter - [https://doc.rust-lang.org/book/ch14-02-publishing-to-crates-io.html#commenting-contained-items](Comenting Contained Items)
//!
//! `cargo_extras` is a collection of utilities to make
//! calculations more convenient.
//!
//! There is also now an example about art and pub mod
//!
pub use PrimaryColor;
pub use SecondaryColor;
pub use mix;
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let arg = 5;
/// let answer = cargo_extras::add_one(arg);
///
/// assert_eq!(answer, 6);
/// ```