mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Improve Must conditions
This commit is contained in:
parent
bef6988dcf
commit
b8ca9f5424
1 changed files with 4 additions and 2 deletions
|
@ -268,16 +268,18 @@ func Must(errs ...error) {
|
|||
}
|
||||
}
|
||||
|
||||
func Must1(_ any, err error) {
|
||||
func Must1[T any](result T, err error) T {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
func Must2(_, _ any, err error) {
|
||||
func Must2[T any, T2 any](result T, result2 T2, err error) (T, T2) {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return result, result2
|
||||
}
|
||||
|
||||
// Deprecated: use E.Errors
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue