I'd like to have something like: --- import std.stdio:!writeln,write; ---which would import all symbols from std.stdio except the ones listed (writeln,write).
Use case:The reason is to avoid writing verbose code (specifying all symbols to import except those 2), example when writing a module (eg overrides.stdio) which overrides just those 2 symbols (eg for logging to a file each call to write,writeln) but keeps the rest intact.
Is there a way or can that be implemented?