Skip to content

Instantly share code, notes, and snippets.

@wircho
Last active August 3, 2016 00:49
Show Gist options
  • Save wircho/67e5d6553fdcdfd154346e3cc8c7b74d to your computer and use it in GitHub Desktop.
Save wircho/67e5d6553fdcdfd154346e3cc8c7b74d to your computer and use it in GitHub Desktop.
Stubbed methods.
/*
* Matrix.swift (continued)
*/
import Darwin
// MARK: Stubbed methods
extension Matrix {
func transpose() -> Matrix {
abort()
}
func inverse() throws -> Matrix {
abort()
}
func determinant() -> Double {
abort()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment