Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 113 Bytes

File metadata and controls

12 lines (9 loc) · 113 Bytes

Features

Variable unpacking

struct Point {
    int x;
    int y;
};

auto [x, y] = Point{1, 2};