<@U33S3CR1A> `constexpr` functions are not macros....
# language-proposals
e
@rrader
constexpr
functions are not macros. The key insight here is that you don’t really need macros most of the time. Macros is like hammer. You can do a lot of things with it, but most of the problems you encounter (inlining debug functions and generating compile-time constants are two good examples here) can (and should be) solved with more targeted features, because those narrower features get a nice tooling automatically without you having to write IDE plugin every time.
👍 3
r
Agree, macros are not needed, I only need code generation based on functions not on annotations