mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Implement chunk_by operation (#14410)
# Description This pull requests implements a new ~~partition-by~~ `chunk-by` command. The operation takes a closure and partitions the input list into sublists based on the return value of the closure. - fixes #14149 Examples, tests and and documentation were added accordingly.  
This commit is contained in:
@ -8,6 +8,7 @@ mod break_;
|
||||
mod bytes;
|
||||
mod cal;
|
||||
mod cd;
|
||||
mod chunk_by;
|
||||
mod chunks;
|
||||
mod compact;
|
||||
mod complete;
|
||||
|
Reference in New Issue
Block a user