Skip to main content

rl_lang/docs/entries/stdlib/bitwise/
trailing_zeros.rs

1use crate::docs::entry::FnEntry;
2
3pub static TRAILING_ZEROS: FnEntry = FnEntry {
4    signature: "trailing_zeros(a)",
5    description: "returns the number of trailing zero bits in a byte or int value",
6    example: "get std::bitwise::trailing_zeros\n\ntrailing_zeros(8) // 3",
7    expected_output: None,
8    returns: "",
9    errors: None,
10    see_also: &[],
11    since: None,
12};