Modify the bits command in nu-cmd-extra to improve visibility (#9516)

In the spirit of #9509 we are changing the visibility of the bits
commands
to align with the way they are correctly done in the bytes commands...

Thanks to @sholderbach for pointing out this nice improvement
to me in my PR earlier in the day...

```rust
mod and;
mod bits_;
mod not;
mod or;
mod rotate_left;
mod rotate_right;
mod shift_left;
mod shift_right;
mod xor;
```
This commit is contained in:
Michael Angerman 2023-06-23 21:41:14 -07:00 committed by GitHub
parent 761946c522
commit 14daa93a19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 18 deletions

View File

@ -1,12 +1,22 @@
pub(crate) mod and; mod and;
pub(crate) mod bits_; mod bits_;
pub(crate) mod not; mod not;
pub(crate) mod or; mod or;
pub(crate) mod rotate_left; mod rotate_left;
pub(crate) mod rotate_right; mod rotate_right;
pub(crate) mod shift_left; mod shift_left;
pub(crate) mod shift_right; mod shift_right;
pub(crate) mod xor; mod xor;
pub use and::BitsAnd;
pub use bits_::Bits;
pub use not::BitsNot;
pub use or::BitsOr;
pub use rotate_left::BitsRol;
pub use rotate_right::BitsRor;
pub use shift_left::BitsShl;
pub use shift_right::BitsShr;
pub use xor::BitsXor;
use nu_protocol::Spanned; use nu_protocol::Spanned;

View File

@ -1,6 +1,16 @@
mod bits; mod bits;
mod bytes; mod bytes;
pub use bits::Bits;
pub use bits::BitsAnd;
pub use bits::BitsNot;
pub use bits::BitsOr;
pub use bits::BitsRol;
pub use bits::BitsRor;
pub use bits::BitsShl;
pub use bits::BitsShr;
pub use bits::BitsXor;
pub use bytes::Bytes; pub use bytes::Bytes;
pub use bytes::BytesAdd; pub use bytes::BytesAdd;
pub use bytes::BytesAt; pub use bytes::BytesAt;
@ -30,15 +40,15 @@ pub fn add_extra_command_context(mut engine_state: EngineState) -> EngineState {
} }
bind_command! { bind_command! {
bits::bits_::Bits, Bits,
bits::and::BitsAnd, BitsAnd,
bits::not::BitsNot, BitsNot,
bits::or::BitsOr, BitsOr,
bits::xor::BitsXor, BitsXor,
bits::rotate_left::BitsRol, BitsRol,
bits::rotate_right::BitsRor, BitsRor,
bits::shift_left::BitsShl, BitsShl,
bits::shift_right::BitsShr BitsShr
} }
// Bytes // Bytes