()
| 21 | ) |
| 22 | |
| 23 | func newOperatorCache() *operatorCache { |
| 24 | return &operatorCache{ |
| 25 | cache: make([]*FDOperator, 0, 1024), |
| 26 | freelist: make([]int32, 0, 1024), |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | type operatorCache struct { |
| 31 | first *FDOperator |
no outgoing calls
searching dependent graphs…