Y
Hacker News
new
|
ask
|
show
|
jobs
by
bluGill
1258 days ago
I'm hopeful modules will come fast, they seem to fix that issue. Modules are already in C++20, but most compilers don't support them well enough yet.
1 comments
gpderetta
1258 days ago
I suspect they will help with the parsing, but not with template instantiation cost which dominates metaprogramming.
link
pjmlp
1258 days ago
That is what external templates are for, pre-instantiate all common cases in a binary library.
link