Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
254 views

Which user-defined-literals are predefined by the standard?

My question sounds like a contradiction, but I don't know how else to refer to the new literal syntax other than user-defined-literal. std::string operator "" s ( const char* str, size_t len ) { ...
7
votes
1answer
131 views

Can a C++ user-defined literal operator ever be passed a null pointer?

Can a C++ user-defined literal operator ever be passed a null pointer? This is really happening with an experimental version of g++ (gcc version 4.7.0 20111114 (experimental) [trunk revision 181364] ...
4
votes
3answers
184 views

C++0x, user-defined literals with friend operator “”()

Will it be possible and/or useful to define an operator "" (...) as a friend function? class Puzzle { friend Puzzle operator "" _puzzle(const char*, size_t); ... }; void solve(Puzzle); int main() ...
3
votes
5answers
183 views

User defined literal arguments are not constexpr?

I'm testing out user defined literals. I want to make _fac return the factorial of the number. Having it call a constexpr function works, however it doesn't let me do it with templates as the ...
3
votes
3answers
364 views

User-defined literals (Extended literals) of C++11… which compilers support it?

In another thread I introduced some techniques we would use for Model-Driven-Development in C++ once C++11 features, in particular user-defined literals, are available. I just revised the plans for ...
2
votes
4answers
89 views

Can user defined literals have functions as arguments?

Can functions be used with user defined literals? If so, what shenanigans can be done? Is this legal? void operator "" _bar(int (*func)(int)) { func(1); } int foo(int x) { std::cout << x ...
2
votes
1answer
237 views

Overloading rules for User-defined-literals in c++0x

I am a little confused about overloading rules, let's say there are following literal operators, unsigned long long operator "" _xx(unsigned long long cooked_literal_int); //1 unsigned long long ...
1
vote
4answers
249 views

User-defined Literals suffix, with *_digit…"?

A user-defined literal suffix in C++0x should be an identifier that starts with _ (underscore) (17.6.4.3.5) should not begin with _ followed by uppercase letter (17.6.4.3.2) Each name that [...] ...
1
vote
1answer
117 views

Are user-defined-literals resolved at compile-time or runtime?

I wonder, because predefined literals like ULL, f, etc. are obviously resolved at compile time. The standard (2.14.8 [lex.ext]) doesn't seem to define this, but it seems to tend towards runtime: ...
0
votes
2answers
73 views

How can variadic char template arguments from user defined literals be converted back into numeric types?

This question is being asked because of this one. C++11 allows you to define literals like this for numeric literals: template<char...> OutputType operator "" _suffix(); Which means that ...