1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 05:27:45 +00:00

seq: implement integer sequences

If we notice that we can represent all arguments as BigInts, take a
different code path. Just like GNU seq this means we can print an
infinite amount of numbers in this case.
This commit is contained in:
Michael Debertol 2021-05-31 20:49:02 +02:00
parent 8d714b0ab0
commit 6ccc305513
4 changed files with 173 additions and 29 deletions

2
Cargo.lock generated
View file

@ -2402,6 +2402,8 @@ name = "uu_seq"
version = "0.0.6"
dependencies = [
"clap",
"num-bigint",
"num-traits",
"uucore",
"uucore_procs",
]