mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Refactor shadowsocks
This commit is contained in:
parent
3f23b25edf
commit
00cd0d4b8f
75 changed files with 3169 additions and 1318 deletions
|
@ -43,6 +43,16 @@ func Filter[T any](arr []T, block func(it T) bool) []T {
|
|||
return retArr
|
||||
}
|
||||
|
||||
func FilterIsInstance[T any, N any](arr []T, block func(it T) (N, bool)) []N {
|
||||
var retArr []N
|
||||
for _, it := range arr {
|
||||
if n, isN := block(it); isN {
|
||||
retArr = append(retArr, n)
|
||||
}
|
||||
}
|
||||
return retArr
|
||||
}
|
||||
|
||||
func Done(ctx context.Context) bool {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue