Panic is equivalent to Print() followed by a call to panic().
(v ...interface{})
| 21 | Fatalln(v ...interface{}) |
| 22 | // Panic is equivalent to Print() followed by a call to panic(). |
| 23 | Panic(v ...interface{}) |
| 24 | // Panicf is equivalent to Printf() followed by a call to panic(). |
| 25 | Panicf(format string, v ...interface{}) |
| 26 | // Panicln is equivalent to Println() followed by a call to panic(). |
nothing calls this directly
no outgoing calls
no test coverage detected