Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phamquochoan/574c6c8da4040dcc3dd0 to your computer and use it in GitHub Desktop.
Save phamquochoan/574c6c8da4040dcc3dd0 to your computer and use it in GitHub Desktop.
Replace rawValue with custom operator
postfix operator .. { }
postfix func ..<T: RawRepresentable> (lhs: T) -> T.RawValue {
return lhs.rawValue
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment