30 Nisan 2021 Cuma

std::in_place

Örnek
Şöyle yaparız
struct Things
{
    Things(const char* msg1, const char* msg2) : one(msg1), two(msg2) {}
    Unmovable one;
    Unmovable two;
};

int main()
{
    std::optional<Things>{std::in_place, "jadda", "neida"};
}

Hiç yorum yok:

Yorum Gönder