Last active
July 11, 2016 12:22
-
-
Save bsrz/84a1d2f50db4a831941548ff674df04a 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 ValueObservingOperation<T> {} | |
| var operations = [ValueObservingOperation<Any>]() // | |
| let op1 = ValueObservingOperation<String>() | |
| let op2 = ValueObservingOperation<Int>() | |
| operations.append(op1) | |
| operations.append(op2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment