The static-if tag has no wiki summary.
3
votes
5answers
450 views
Will static_if deprecate template specialization?
Some usual template specialization like this:
template<class T>
class C
{
void common() { ... }
void f2 = delete;
};
template<>
class C<int>
{
void common() { ... }
...
7
votes
3answers
374 views
Faking Static If in C++
I am testing combinations of various optimizations and for these I need a static-if as described in http://channel9.msdn.com/Events/GoingNative/GoingNative-2012/Static-If-I-Had-a-Hammer to enable and ...
2
votes
1answer
278 views
“static-if” better with classes or function templates?
I want to define interface for serializing variables, where depending on a template argument, serialization code (true) or nothing (false) is performed. The serialization function is itself templated ...
10
votes
3answers
2k views
static if in plain c++?
Problem in short:
How could one implement static if functionality, proposed in c++11, in plain c++ ?
History and original problem:
Recently I came up with a problem like this. I need a class Sender ...
5
votes
2answers
306 views
Is D's “static if” declarative or procedural?
Consider the following code:
static if (!is(MyStruct))
{
struct MyStruct
{
}
}
static if (is(MyStruct))
{
static assert(0);
}
My original understanding has been that the order of ...
12
votes
3answers
895 views
Are there other languages besides D with static if?
I think D's static if is an interesting language feature. That prompts my question: Are there are other examples of compiled languages in which the compiler has a strong notion of the code and there ...