Skip to content

Instantly share code, notes, and snippets.

@zntfdr
Created February 13, 2016 04:10
Show Gist options
  • Save zntfdr/97ce20009a2ce963b604 to your computer and use it in GitHub Desktop.
Save zntfdr/97ce20009a2ce963b604 to your computer and use it in GitHub Desktop.
func ==(x: Path, y: Path) -> Bool {
return x.cumulativeWeight == y.cumulativeWeight
}
func <(x: Path, y: Path) -> Bool {
return x.cumulativeWeight < y.cumulativeWeight
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment