add iter module to standard library (#8899)

# Description
 
this pr introduces an `iter` module
to the standard library.

the module is aimed at extending the filter commands.
This commit is contained in:
mike
2023-04-19 00:01:36 +03:00
committed by GitHub
parent 29256b161c
commit 91c01bf6b3
4 changed files with 165 additions and 0 deletions

View File

@ -74,6 +74,7 @@ pub fn load_standard_library(
// the rest of the library
("dirs", include_str!("../lib/dirs.nu")),
("iter", include_str!("../lib/iter.nu")),
("help", include_str!("../lib/help.nu")),
("testing", include_str!("../lib/testing.nu")),
("xml", include_str!("../lib/xml.nu")),