It may happen that you want to rename a few symbols in a module (e.g. because of name clashes). Do you think it would be possible, and/or useful, to have a @reexport syntax for:
exporting all symbols except a few ones:
@reexport using Y: !except_this_symbol, ...
exporting all symbols while renaming a few ones:
@reexport using Y: this_symbol = is_renamed_this_way, ...
It may happen that you want to rename a few symbols in a module (e.g. because of name clashes). Do you think it would be possible, and/or useful, to have a
@reexport
syntax for: