Skip to content

Instantly share code, notes, and snippets.

@0xdea110c8
Last active February 7, 2025 07:10
Show Gist options
  • Save 0xdea110c8/f9f3394cd445fc8db04f1916b0f949c5 to your computer and use it in GitHub Desktop.
Save 0xdea110c8/f9f3394cd445fc8db04f1916b0f949c5 to your computer and use it in GitHub Desktop.
Custom operators
infix operator => : ComparisonPrecedence
public func =><`Type`>(lhs: `Type`, rhs: Set<`Type`>) -> Bool {
return rhs.contains(lhs)
}
infix operator !=> : ComparisonPrecedence
public func !=><`Type`>(lhs: `Type`, rhs: Set<`Type`>) -> Bool {
return !rhs.contains(lhs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment