mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 18:20:55 +01:00
dbdb1f6600
follow-up to: - https://github.com/nushell/nushell/pull/10771 > **Important** > wait for between 0.87 and 0.88 to land this # Description after deprecation comes the removal... this PR removes `unfold` in favor of `generate` 🥳 # User-Facing Changes users should use `generate` now, `unfold` will stop working. # Tests + Formatting # After Submitting
12 lines
179 B
Rust
12 lines
179 B
Rust
mod cal;
|
|
mod generate;
|
|
mod seq;
|
|
mod seq_char;
|
|
mod seq_date;
|
|
|
|
pub use cal::Cal;
|
|
pub use generate::Generate;
|
|
pub use seq::Seq;
|
|
pub use seq_char::SeqChar;
|
|
pub use seq_date::SeqDate;
|