rl_lang/docs/entries/stdlib/bitwise/bit_shift_right.rs
1use crate::docs::entry::FnEntry;
2
3pub static BIT_SHIFT_RIGHT: FnEntry = FnEntry {
4 signature: "bit_shift_right(a, n)",
5 description: "shifts a byte or int value right by n bits",
6 example: "get std::bitwise::bit_shift_right\n\nbit_shift_right(10, 1) // 5",
7 expected_output: None,
8 returns: "",
9 errors: None,
10 see_also: &[],
11 since: None,
12};