Skip to content

Instantly share code, notes, and snippets.

@sandeeplearner
Created May 11, 2020 20:01
Show Gist options
  • Save sandeeplearner/37c08af063cb4643a823141e73729edd to your computer and use it in GitHub Desktop.
Save sandeeplearner/37c08af063cb4643a823141e73729edd to your computer and use it in GitHub Desktop.
Generic Operations Protocol
protocol GenericOperations {
associatedtype Operand
func add(operand1: Operand, operand2: Operand) -> Operand
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment