std::initializer_list is a special type in C++11 which is used to construct containers and other types from a list of values.

learn more… | top users | synonyms

18
votes
3answers
734 views

Can I list-initialize a vector of move-only type?

If I pass the following code through my GCC 4.7 snapshot, it tries to copy the unique_ptrs into the vector. #include <vector> #include <memory> int main() { using move_only = ...
14
votes
2answers
717 views

initializer_list and move semantics

Am I allowed to move elements out of a std::initializer_list<T>? #include <initializer_list> #include <utility> template<typename T> void foo(std::initializer_list<T> ...
15
votes
4answers
2k views

How do I initialize a member array with an initializer_list?

I'm getting up to speed with C++0x, and testing things out with g++ 4.6 I just tried the following code, thinking it would work, but it doesn't compile. I get the error: incompatible types in ...
8
votes
6answers
6k views

C++ Member Initialization List

Please explain how to use member initialization list I have a class declared in .h file and cpp file for implementation something like this: class Example { private: int m_top; const int ...
8
votes
4answers
808 views

Why doesn't my template accept an initializer list

I have created a template as follows template<typename T> void f(T const& t) { } I wanted for this to be callable by containers but also by initializer lists. I thought it would be ...
3
votes
2answers
630 views

Templates don't always guess initializer list types

#include <initializer_list> #include <utility> void foo(std::initializer_list<std::pair<int,int>>) {} template <class T> void bar(T) {} int main() { foo({{0,1}}); ...
10
votes
8answers
793 views

Optimization due to constructor initializer list

Constructors should initialize all its member objects through initializer list if possible. It is more efficient than building the constructors via assignment inside the constructor body. ...
14
votes
5answers
7k views

std::initializer_list as function argument

For some reason I thought C++0x allowed std::initializer_list as function argument for functions that expect types that can be constructed from such, for example std::vector. But apparently, it does ...
21
votes
2answers
2k views

C++ vector of arrays

Why does this work: std::pair<int, int> p = {1,2}; std::vector<std::pair<int, int>> vp = { {1,2}, {3,4} }; But this doesn't? std::array<int, 2> a = {1,2}; // still ok ...
15
votes
2answers
1k views

Why use variadic arguments now when initializer lists are avaiable?

I've been wondering what are the advantages of variadic arguments over initializer lists. Both offer the same ability - to pass indefinite number of arguments to a function. What I personally think ...
6
votes
0answers
437 views

Unexpected non-constant std::initializer_list

I was toying a little bit with the indices trick to see where I could go to with and came across a strange error... First, the plain not-so-old indices: template<std::size_t...> struct indices ...
7
votes
1answer
525 views

How to initialize a container of noncopyable with initializer list? [duplicate]

Possible Duplicate: Can I list-initialize a vector of move-only type? I use gcc 4.6.1 to compile this code int main() { std::vector<std::unique_ptr<int>> vec({ ...
6
votes
2answers
2k views

C++: Constructor versus initializer list in struct/class

An object of a struct/class (that has no constructor) can be created using an initializer list. Why is this not allowed on struct/class with constructor? struct r { int a; }; struct s { int a; s() : ...
3
votes
2answers
1k views

Use std::initializer_list in Visual C++ Compiler November 2012 CTP

I want to use std::initializer_lists in Visual Studio 2012 like a guy in this example does. My operating system is Windows 8 x64. Therefore I lately installed the Visual C++ Compiler November 2012 ...
0
votes
1answer
309 views

Is it possible to pass data as initializer_list to std::array of structures?

I have the following code. Basically I want to initialize a std::array of non-POD structs using aggregate initialization syntax. Both g++ 4.6 and 4.7 (latest weekly snapshot) fails to compile the ...
23
votes
3answers
1k views

When to use the brace-enclosed initializer?

In C++11, we have that new syntax for initializing classes which gives us a big number of possibilities how to initialize variables. { // Example 1 int b(1); int a{1}; int c = 1; int d = {1}; ...
36
votes
6answers
2k views

Why isn't std::initializer_list a language built-in?

Why isn't std::initializer_list a core-language built-in? It seems to me that it's quite an important feature of C++11 and yet it doesn't have its own reserved keyword (or something alike). Instead, ...
16
votes
5answers
1k views

Initializing from an initializer list, but without {{{{{{{{ … }}}}}}}}?

I recently stumbles across some problem with initializer lists. Consider a program that stores map-like data struct MyMapLike { MyMapLike(std::map<std::string, int> data) ...
23
votes
4answers
547 views

What could go wrong if copy-list-initialization allowed explicit constructors?

In the C++ standard, ยง13.3.1.7 [over.match.list], the following is stated: In copy-list-initialization, if an explicit constructor is chosen, the initialization is ill-formed. This is the reason ...
9
votes
1answer
160 views

Is it legal to declare a constexpr initializer_list object?

As a question that came up during the discussion of this SO question: Is it legal, maybe with N3471, to declare a constexpr std::initializer_list object? Example: constexpr ...
8
votes
3answers
194 views

Default values in C++ initializer lists

I only just learned yesterday that specifying parameters to initializer list items is optional. However, what are the rules for what happens in this case? In the below example, will ptr be ...
8
votes
1answer
2k views

What would a std::map extended initializer list look like?

If it even exists, what would a std::map extended initializer list look like? I've tried some combinations of... well, everything I could think of with GCC 4.4, but found nothing that compiled.
8
votes
2answers
7k views

C++0x initializer list example

I would like to see how this example of existing code would be able to take advantage of the C++0x initializer list feature. Example0: #include <vector> #include <string> struct Ask { ...
7
votes
1answer
113 views

Optionally supporting initializer_list construction for templates maybe wrapping containers

If I have a template that wraps a standard container, it seems I can reasonably easily delegate the initializer_list constructor: template<typename T> struct holder { T t_; holder() : ...
7
votes
2answers
411 views

Why is the size not a template argument of std::initializer_list?

std::initializer_list is constructed by the compiler from a brace-enclosed init list and the size of this list must be a compile time constant. So why did the committee decide to omit the size from ...
7
votes
4answers
843 views

Implementing a std::array-like container with a C++11 initializer_list

The only and imo very inconvenient caveat of std::array is that it can't deduce its size from the initializer list like built-in C arrays, it's size must be passed as a template. Is it possible to ...
10
votes
3answers
2k views

Why does 'std::vector<int> b{2};' create a 1-element vector, and not a 2-element one?

I've been playing around with C++11 for the past few days, and I came up with something strange. If I want to uniformly initialize an int: int a{5}; But if I do the same thing to a std::vector: ...
7
votes
3answers
6k views

Brace-enclosed initializer list constructor

I have class Phenotype with the following constructor: Phenotype(uint8 init[NUM_ITEMS]); I can create a Phenotype like this: uint8 data[] = {0,0,0,0,0}; Phenotype p(data); But I get an error ...
5
votes
2answers
605 views

in-place vector construction from initialization list (for class with constructor arguments) [duplicate]

Possible Duplicate: Can I list-initialize a vector of move-only type? Edit 1: Please consider a re-open vote: My question emphasize in-place construction. Move construction is an ...
3
votes
3answers
128 views

Is initializing with “var{args}” a new feature of C++0x, or merely syntactic sugar?

I was reading the C++0x faq and came across the section detailing initializer lists. The examples were mostly variations of: vector<int> vi = { 1, 2, 3 }; vector<int> vj({1, 2, 3}); // ...
1
vote
3answers
189 views

Yet another C++ Object initialization interrogation

I have this class that has many class members, and a lot of different constructors. Until now, I used a constructor initialization list in each of the constructors that I have, tuning each member the ...