Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created February 14, 2018 10:40
Show Gist options
  • Save deque-blog/51f20bf11bf45594f4e6160531623f16 to your computer and use it in GitHub Desktop.
Save deque-blog/51f20bf11bf45594f4e6160531623f16 to your computer and use it in GitHub Desktop.
struct Payment {
Money m_amount;
Account m_from;
Account m_to;
};
// Pattern matching against a custom structure
Payment payment = ...;
auto [amount, from, to] = payment;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment