ChaosNyaruko

Results 5 issues of ChaosNyaruko

ginc = gopCache.gops[(gopCache.nextindex+1)%gopCache.count] 这个逻辑是有问题的,nextindex在不开新array时而是希望取出现有的array时,+1没有意义(原义逻辑是想-1?取最近更新的array)-----> 当count(gop_num)>3时甚至直接就会引发panic

It has been remvoe, see https://github.com/v2fly/v2ray-core/pull/488. So the old documentation may be misguiding for starter-developers.

Fix issue54. I just copied the "filterFiles" in cmdCat/cmdEdit to cmdDelete, and it works fine in my sight.

The Pool does not have a "Close" API, so if I want to substitute one existing Pool with another(sometimes because the command is updated), I have no way to release...

### The following program `sample.go` triggers an unexpected result ```Go import ( "log" "reflect" "github.com/traefik/yaegi/interp" ) func main() { var err error i := interp.New(interp.Options{}) type Super struct { }...