Created
April 19, 2020 21:57
-
-
Save antaranyan/010b4e7775daa484f11d571c199978c2 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
| typedef Compare = int Function(Object a, Object b); | |
| class SortedCollection { | |
| Compare compare; | |
| SortedCollection(this.compare); | |
| } | |
| // Initial, broken implementation. | |
| int sort(Object a, Object b) => 0; | |
| void main() { | |
| SortedCollection coll = SortedCollection(sort); | |
| assert(coll.compare is Function); | |
| assert(coll.compare is Compare); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
But: