Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Created January 7, 2019 14:17
Show Gist options
  • Save andrevidela/a1a0689de6e232734700f34b0b1865db to your computer and use it in GitHub Desktop.
Save andrevidela/a1a0689de6e232734700f34b0b1865db to your computer and use it in GitHub Desktop.
/// A protocol for getting the magnitude of an object
protocol Magnitude {
associatedtype MagVal: Comparable
var magSquare: MagVal { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment