Skip to content

Instantly share code, notes, and snippets.

@frankxzx
Created January 21, 2017 06:35
Show Gist options
  • Save frankxzx/31a4acc760f2c8565b650a90d866fade to your computer and use it in GitHub Desktop.
Save frankxzx/31a4acc760f2c8565b650a90d866fade to your computer and use it in GitHub Desktop.
typealias Check<U> = (U, U) -> Bool
func compare<T>(ls: T, rs: T, check: Check<T>) -> Bool {
return check(ls, rs)
}
let a = compare(ls: 2, rs: 3) { $0 > $1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment