Initializing an std::array of non-default-constructible elements?

前端 未结 1 1478
不知归路
不知归路 2021-01-04 23:22

Suppose type foo_t with a named constructor idiom, make_foo(). Now, I want to have exactly 123 foo\'s - no more, no less. So, I\'m thinking about a

1条回答
  •  渐次进展
    2021-01-04 23:57

    The usual.

    template
    std::array make_foos(std::index_sequence) {
        return { ((void)Is, make_foo())... };
    }
    
    template
    std::array make_foos() {
        return make_foos(std::make_index_sequence());
    }
    

    0 讨论(0)
提交回复
热议问题