enum Never
The return type of functions that do not return normally, that is, a type with no values.
普通に戻らない関数の戻り型、すなわち、値なしでの型。
Availability
Technology
func fatalError(_ message: @autoclosure () -> String
= String(), file: StaticString
= #file, line: UInt
= #line) -> Never
message
The string to print. The default is an empty string. 出力するメッセージ初期状態では空の文字列です。
file
The file name to print with message
. The default is the file where fatal
is called.
message
とともに出力するファイル名。初期状態では、fatal
が呼び出されたところのファイルです。
line
The line number to print along with message
. The default is the line number where fatal
is called.
message
に加えて出力される行番号。初期状態では、fatal
が呼び出されたところの行番号です。
enum Never