Created
February 14, 2018 10:40
-
-
Save deque-blog/51f20bf11bf45594f4e6160531623f16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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