Andrej Kolčin

Results 49 comments of Andrej Kolčin

So `format` doesn't have a panic section, because it doesn't panic by itself. And `to_string` doesn't have a panic section, because it's a generic trait method. Unsure if it makes...

I doubt someone out there has a command name starting with a hyphen, but I reported it because this seems to be some parser quirk.

@fdncred, TOML has first-class date/time support: This allows to store dates in TOML without converting them to and from strings.

@fdncred I'm unsure, tbh. I was trying to fit serialize Nushell records and put them into `stor`. But `stor` can't accept big serialized strings or bytes[^serde]. From what I can...

@IanManske what a coincidence, I was just going through my old issues and closing outdated ones, and as I was in #11086 Your message came! I feel like the problem...

@IanManske I could try coding up something like that. Along with `step: Option`, maybe. One question is mixed types. Technically something like `9_223_372_036_854_775_807..10000000000000000000.0` is valid. So does it mean integers...

```Nushell ~> nan..null.. Error: nu::shell::type_mismatch × Type mismatch during operation. ╭─[entry #71:1:1] 1 │ nan..null.. · ─────┬─────┬┬ · │ │╰── type mismatch for operator · │ ╰── float · ╰──...

@IanManske thanks! I'll take a look and give it a try

I have a bold proposal: what if we banned float ranges? I'm looking at #11773, #11774, #11776, #11777, #11778 and thinking that maybe trying to fix all of the edge...

Design question No. 1: how should this handle negatives on streams? It's tricky, because technically both `ls` and `generate` are streams. But it's impossible to differentiate the two from code....