Skip to content

Instantly share code, notes, and snippets.

@idrougge
Created October 8, 2020 08:18
Show Gist options
  • Save idrougge/8729bde0c3014f7d4bf08fbf0b30f8e9 to your computer and use it in GitHub Desktop.
Save idrougge/8729bde0c3014f7d4bf08fbf0b30f8e9 to your computer and use it in GitHub Desktop.
extension Sequence {
func sorted<T>(by kp: KeyPath<Element, T>) -> [Element] where T: Comparable {
self.sorted {
$0[keyPath: kp] < $1[keyPath: kp]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment