2016-02-03 16:54:02 -05:00
|
|
|
// Package common contains common utilities that are shared among other packages.
|
|
|
|
// See each sub-package for detail.
|
|
|
|
package common
|
2016-03-09 18:33:01 -05:00
|
|
|
|
2017-12-02 19:04:57 -05:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg common -path Common
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2016-12-27 18:53:29 -05:00
|
|
|
// Must panics if err is not nil.
|
|
|
|
func Must(err error) {
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
2017-09-19 17:27:49 -04:00
|
|
|
|
2018-02-21 15:42:33 -05:00
|
|
|
// Must2 panics if the second parameter is not nil, otherwise returns the first parameter.
|
|
|
|
func Must2(v interface{}, err error) interface{} {
|
|
|
|
Must(err)
|
|
|
|
return v
|
2017-09-19 17:27:49 -04:00
|
|
|
}
|