(i uint64)
| 71 | } |
| 72 | |
| 73 | func (f *folder) findInBindPair(i uint64) *bindPair { |
| 74 | for _, v := range f.bindPair { |
| 75 | if v.in == i { |
| 76 | return v |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | return nil |
| 81 | } |
| 82 | |
| 83 | func (f *folder) findOutBindPair(i uint64) *bindPair { |
| 84 | for _, v := range f.bindPair { |
no outgoing calls
no test coverage detected