Rustdoc
Rust์ ์์ดํ
(item)์ ///
๋ฌธ๋ฒ์ ์ฌ์ฉํ์ฌ ๋ฌธ์ํํ ์ ์์ต๋๋ค.
/// Determine whether the first argument is divisible by the second argument. /// /// If the second argument is zero, the result is false. fn is_divisible_by(lhs: u32, rhs: u32) -> bool { if rhs == 0 { return false; // Corner case, early return } lhs % rhs == 0 // The last expression in a block is the return value }
์ฝํ
์ธ ๋ ๋งํฌ๋ค์ด์ผ๋ก ์ฒ๋ฆฌ๋ฉ๋๋ค. ๊ฒ์๋ ๋ชจ๋ Rust ๋ผ์ด๋ธ๋ฌ๋ฆฌ ํฌ๋ ์ดํธ๋ rustdoc ๋๊ตฌ๋ฅผ ์ฌ์ฉํ์ฌ docs.rs
์ ์๋์ผ๋ก ๋ฌธ์ํ๋ฉ๋๋ค. ์ผ๋ฐ์ ์ผ๋ก API์ ๋ชจ๋ ๊ณต๊ฐ ํญ๋ชฉ์ ์ด ํจํด์ ์ฌ์ฉํ์ฌ ๋ฌธ์ํ๋ฉ๋๋ค.
-
docs.rs/rand
์์rand
ํฌ๋ ์ดํธ์ฉ์ผ๋ก ์์ฑ๋ ๋ฌธ์๋ฅผ ๋ณด์ฌ์ค๋๋ค. -
์ด ์ฌ๋ผ์ด๋์ ์์ ์ฝ๋๋ ๋ฌธ์ํ ์ฃผ์์ด ์๋ต๋์ด ์์ง๋ง, ์ค์ ์ฝ๋๋ผ๋ฉด ๋ฌธ์ํ ์ฃผ์์ ๋ฐ๋์ ์จ์ผ ํฉ๋๋ค.
-
๋ฌธ์ ๋ด๋ถ ์ฃผ์ ๋ชจ๋ ํ์ด์ง ๋ท๋ถ๋ถ์์ ๋ค๋ฃจ๋ฉฐ ์ฌ๊ธฐ์ ๋ค๋ฃจ์ง ์์๋ ๋ฉ๋๋ค.
-
๋ฌธ์ํ ์ฃผ์์ ์ฝ๋๋ฅผ ํฌํจํ ์๋ ์์ผ๋ฉฐ, ์ด ์ฝ๋๋
cargo test
๋ฅผ ํตํด ํ ์คํธ๋ก ๋์ํ ์๋ ์์ต๋๋ค. ํ ์คํธ์์ ๋ ์์ธํ ๋ค๋ฃจ๊ฒ ์ต๋๋ค.