func precondition(_: () -> Bool, _: () -> String, file: StaticString, line: UInt) Check a necessary condition for making forward progress. Use this function to detect conditions that must prevent the program from proceeding even in shipping code. In playgrounds and -Onone builds (the default for Xcode's Debug configuration): if condition evaluates to false, stop program execution in a debuggable state after printing message. In -O builds (the default for Xcode's Release configuration): if condition evaluates to false, stop program execution. In -Ounchecked builds, condition is not evaluated, but the optimizer may assume that it would evaluate to true. Failure to satisfy that assumption in -Ounchecked builds is a serious programming error. Declaration func precondition(@autoclosure condition: () -> Bool, @autoclosure _ message: () -> String = default, file: StaticString = #file, line: UInt = #line)