error
Functions: abortWrapper, abort, todo
abortWrapper
never abortWrapper()Prints a stack trace and aborts.
abort
never abort<T: Printable + Copyable>(T... args)Aborts the program, printing the given values to stderr.
never abort<T: Printable>(T&... args)Aborts the program, borrowing values that cannot be copied.
todo
never todo()Aborts the program, marking the code as not implemented yet.
never todo(string reason)Aborts the program with the given message, marking the code as not implemented yet.