mirror of
https://github.com/nushell/nushell.git
synced 2025-05-07 08:22:58 +00:00
This PR closes #6916, which now allows table/table operations on the `++` operator. ``` [[a b]; [1 2]] ++ [[a b]; [1 3]] ╭───┬───┬───╮ │ # │ a │ b │ ├───┼───┼───┤ │ 0 │ 1 │ 2 │ │ 1 │ 1 │ 3 │ ╰───┴───┴───╯ ```