mirror of
https://github.com/nushell/nushell.git
synced 2024-12-24 07:59:21 +01:00
move 'bytes' back to commands (#10051)
# Description Moves the `bytes XXXX` commands back to the default set.
This commit is contained in:
parent
028a327ce8
commit
2ae1de2470
@ -1,5 +1,4 @@
|
|||||||
mod bits;
|
mod bits;
|
||||||
mod bytes;
|
|
||||||
mod conversions;
|
mod conversions;
|
||||||
mod filters;
|
mod filters;
|
||||||
mod formats;
|
mod formats;
|
||||||
@ -7,19 +6,6 @@ mod math;
|
|||||||
mod platform;
|
mod platform;
|
||||||
mod strings;
|
mod strings;
|
||||||
|
|
||||||
pub use bytes::Bytes;
|
|
||||||
pub use bytes::BytesAdd;
|
|
||||||
pub use bytes::BytesAt;
|
|
||||||
pub use bytes::BytesBuild;
|
|
||||||
pub use bytes::BytesCollect;
|
|
||||||
pub use bytes::BytesEndsWith;
|
|
||||||
pub use bytes::BytesIndexOf;
|
|
||||||
pub use bytes::BytesLen;
|
|
||||||
pub use bytes::BytesRemove;
|
|
||||||
pub use bytes::BytesReplace;
|
|
||||||
pub use bytes::BytesReverse;
|
|
||||||
pub use bytes::BytesStartsWith;
|
|
||||||
|
|
||||||
pub use bits::Bits;
|
pub use bits::Bits;
|
||||||
pub use bits::BitsAnd;
|
pub use bits::BitsAnd;
|
||||||
pub use bits::BitsInto;
|
pub use bits::BitsInto;
|
||||||
@ -111,22 +97,6 @@ pub fn add_extra_command_context(mut engine_state: EngineState) -> EngineState {
|
|||||||
BitsXor
|
BitsXor
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bytes
|
|
||||||
bind_command! {
|
|
||||||
Bytes,
|
|
||||||
BytesLen,
|
|
||||||
BytesStartsWith,
|
|
||||||
BytesEndsWith,
|
|
||||||
BytesReverse,
|
|
||||||
BytesReplace,
|
|
||||||
BytesAdd,
|
|
||||||
BytesAt,
|
|
||||||
BytesIndexOf,
|
|
||||||
BytesCollect,
|
|
||||||
BytesRemove,
|
|
||||||
BytesBuild
|
|
||||||
}
|
|
||||||
|
|
||||||
// Math
|
// Math
|
||||||
bind_command! {
|
bind_command! {
|
||||||
MathArcSin,
|
MathArcSin,
|
||||||
|
@ -325,6 +325,22 @@ pub fn add_shell_command_context(mut engine_state: EngineState) -> EngineState {
|
|||||||
MathLog,
|
MathLog,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Bytes
|
||||||
|
bind_command! {
|
||||||
|
Bytes,
|
||||||
|
BytesLen,
|
||||||
|
BytesStartsWith,
|
||||||
|
BytesEndsWith,
|
||||||
|
BytesReverse,
|
||||||
|
BytesReplace,
|
||||||
|
BytesAdd,
|
||||||
|
BytesAt,
|
||||||
|
BytesIndexOf,
|
||||||
|
BytesCollect,
|
||||||
|
BytesRemove,
|
||||||
|
BytesBuild
|
||||||
|
}
|
||||||
|
|
||||||
// Network
|
// Network
|
||||||
bind_command! {
|
bind_command! {
|
||||||
Http,
|
Http,
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
mod bytes;
|
||||||
mod charting;
|
mod charting;
|
||||||
mod conversions;
|
mod conversions;
|
||||||
mod date;
|
mod date;
|
||||||
@ -27,6 +28,7 @@ mod strings;
|
|||||||
mod system;
|
mod system;
|
||||||
mod viewers;
|
mod viewers;
|
||||||
|
|
||||||
|
pub use bytes::*;
|
||||||
pub use charting::*;
|
pub use charting::*;
|
||||||
pub use conversions::*;
|
pub use conversions::*;
|
||||||
pub use date::*;
|
pub use date::*;
|
||||||
|
Loading…
Reference in New Issue
Block a user