nushell/crates/nu-command/tests
Reilly Wood 16b99ed0ba
Make ++ operator work with strings and binary values (#8017)
This PR makes `++` (the append operator) work with strings and binary
values. Can now do things like:

```bash
〉"a" ++ "b"
ab
〉0x[01 02] ++ 0x[03]
Length: 3 (0x3) bytes | printable whitespace ascii_other non_ascii
00000000:   01 02 03                                             •••
```

Closes #8015.
2023-02-10 07:52:10 +13:00
..
commands Make ++ operator work with strings and binary values (#8017) 2023-02-10 07:52:10 +13:00
format_conversions Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
main.rs Expand Nushell's help system (#7611) 2022-12-30 17:44:37 +02:00