nushell/crates/nu-cmd-extra
Michael Angerman 14daa93a19
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;
```
2023-06-23 21:41:14 -07:00
..
src Modify the bits command in nu-cmd-extra to improve visibility (#9516) 2023-06-23 21:41:14 -07:00
tests cratification: move the bytes command to nu-cmd-extra (#9509) 2023-06-23 12:23:08 -07:00
Cargo.toml cratification: move the bytes command to nu-cmd-extra (#9509) 2023-06-23 12:23:08 -07:00
LICENSE nu-cmd-extra crate infrastructure in place with the Bits command as the model for adding other commands (#9327) 2023-06-01 10:46:16 -07:00