Last active
January 7, 2019 14:41
-
-
Save andrevidela/a787480cfa58ca5f605baedb87154699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prefix operator √ | |
/// A protocol for getting the square root of a value | |
protocol SquareRoot { | |
static prefix func √(_ square: Self) -> Self | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment