Created
December 13, 2016 09:13
-
-
Save ukitaka/277c8d4e3a66c9c919694de75031d95f to your computer and use it in GitHub Desktop.
fatalErrorT
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
| func fatalErrorT<T>() -> T { | |
| fatalError() | |
| } | |
| func fatalErrorT<T>(_ message: String) -> T { | |
| fatalError(message) | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
こうかける