User-defined literals are a C++ language feature (new in C++11) that allow the user to define new kinds of literal modifiers that will construct objects based on the string of characters that the literal modifies.
25
votes
7answers
1k views
Conveniently Declaring Compile-Time Strings in C++
Being able to create and manipulate strings during compile-time in C++ has several useful applications. Although it is possible to create compile-time strings in C++, the process is very cumbersome, ...
1
vote
2answers
69 views
Overloading assignment operator for type deduction
Here's the ideone code: http://ideone.com/Qp8Eqg
My question is, is it possible to force a conversion based on the lvalue alone? For example,
[Seconds] s = 2_h + 60_s;
cout ...
7
votes
1answer
261 views
Is it possible to disable GCC warning about missing underscore in user defined literal?
void operator"" test( const char* str, size_t sz )
{
std::cout<<str<<" world";
}
int main()
{
"hello"test;
return 0;
}
In GCC 4.7, this generates "warning: literal operator ...
10
votes
2answers
174 views
How to automatically add literal definitions, based on a single user-defined literal?
C++11 offers user-defined literals. I've just started to play around with them, which made me wonder whether it would be possible to automatically add all SI multipliers to a single literal I define?
...
1
vote
2answers
94 views
How do I define a negative UDL in c++11 (are they disallowed?)?
I'm not even sure if negative User-Defined Literals are allowed. If not, why were they left out?
For example, I would like to use:
auto money_i_owe_jack = -52_jpy;
This is what I tried using gcc ...
0
votes
0answers
99 views
binary literal type conversion
I wrote the following code:
g++ -x c++ - -std=gnu++11 -Wall -Wextra -Werror -Wconversion <<__EOF && ./a && echo -e "\e[1;31mOK\e[0m" || echo -e "\e[1;31mfailed!\e[0m"
#include ...
0
votes
2answers
115 views
C++11 numeric literal operator error
Why does this code:
constexpr float operator "" _deg(long double d) {
// returns radians
return d*3.1415926535/180;
}
static const float ANGLES[] = {-20_deg, -10_deg, 0_deg, 10_deg, 20_deg};
...
10
votes
1answer
186 views
Empty destructor vs literal destructor
Consider the following code:
#include <iostream>
class Test
{
public:
constexpr Test(const int x) : _x(x) {}
constexpr int get() const {return _x;}
~Test() {} // ...
2
votes
1answer
84 views
Should integer values be passed to floating point user defined literals?
I'm playing around with user-defined-literals (with GCC 4.7).
double operator"" _lb(long double n)
{
return n * 0.453592; // convert pounds to kilos
}
This works fine when passing it a floating ...
5
votes
1answer
164 views
C++ available “literal suffix code” for units
C++1x supports literal suffixes (cmp. e.g. http://ecn.channel9.msdn.com/events/GoingNative12/GN12Cpp11Style.pdf). I am using gcc 4.7 and want to introduce some units for our system. Most notably half ...
4
votes
2answers
135 views
User-Defined String Literals Vs. Other User-Defined Literals
Let's consider the following quote from the C++11 standard (the N3376 draft, to be precise):
(2.14.8.5)
If L is a user-defined-string-literal, let str be the literal without
its ud-suffix and ...
3
votes
1answer
375 views
Where can I find a listing of C++11 type prefixes/suffixes?
Could somebody point me to a complete listing of language type prefixes/suffixes?
prefix examples:
auto s1 (u8"I'm a UTF-8 string.");
auto s2 (u"This is a UTF-16 string.");
auto s3 (U"This is a ...
10
votes
1answer
332 views
g++ 4.7 evaluates operator “” as sibling to macro expansion
I'm moving some code over to GCC 4.7 (from 4.6) and ran into a few compiler errors and found the problem documented in the GCC 4.7 porting guide:
User-defined literals and whitespace
The C++ ...
3
votes
3answers
158 views
Compile time consistent hash of char types
I want to implement of sort of Symbol the same way ruby does.
For this, I created a user defined literal which returned a std::hash of the std::basic_string<T> corresponding.
The code was ...
7
votes
1answer
315 views
Can string-based user-defined literals be strongly typed?
The new user-defined literal concept in C++ suggests some very interesting uses of string-literals, such as:
"Goodbye %s world"_fmt("cruel");
"Goodbye %s world"_fmt(123); // Error: arg 1 must be ...
-1
votes
2answers
238 views
Why doesn't std::string define multiplication or literals? [closed]
In the language I was first introduced to, there was a function repeat(), that took a string, and repeated it n times. For example, repeat ("hi", 3) gives a result of "hihihi".
I did have quite a ...
0
votes
1answer
688 views
Extending class dynamically in Extjs
I need to extend class dynamically and use this code:
Calc.grid.Table["Table"+key] = function(config) {
config = config || {};
Ext.applyIf(config,{
id: ...
4
votes
1answer
561 views
Physical Boost.Units User Defined Literals
Now that we soon have user defined literals (UDL), in GCC 4.7 for example, I'm eagerly waiting for (physical) unit libraries (such as Boost.Units) using them to ease expression of literals such as ...
27
votes
2answers
490 views
Does anyone have information on using operator“”?
Bjarne Stroustrup gave a keynote presentation today for the Going Native 2012 conference. In his presentation, he discussed the issue of enforcing correct units. His elegant (IMHO) solution to this ...
7
votes
1answer
307 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] ...
1
vote
2answers
374 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 ...
5
votes
5answers
763 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 ...
4
votes
4answers
155 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 ...
4
votes
3answers
376 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() ...
1
vote
4answers
588 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 [...] ...
4
votes
2answers
277 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:
...
9
votes
4answers
388 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 )
{
...
2
votes
1answer
568 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 ...
3
votes
3answers
633 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 ...
66
votes
9answers
13k views
What new capabilities do user-defined literals add to C++?
C++11 introduces user-defined literals which will allow the introduction of new literal syntax based on existing literals (int, hex, string, float) so that any type will be able to have a literal ...
