Skip to content

Instantly share code, notes, and snippets.

@baeharam
Last active July 10, 2018 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baeharam/a49a0eb0dbf4280c8e7530a230925ba5 to your computer and use it in GitHub Desktop.
Save baeharam/a49a0eb0dbf4280c8e7530a230925ba5 to your computer and use it in GitHub Desktop.
typedef, underscore parameter
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment