| 11 | ) |
| 12 | |
| 13 | type HandleList struct { |
| 14 | doNotCompare |
| 15 | sync.RWMutex |
| 16 | // stores the Go pointers |
| 17 | handles map[unsafe.Pointer]interface{} |
| 18 | } |
| 19 | |
| 20 | func NewHandleList() *HandleList { |
| 21 | return &HandleList{ |
nothing calls this directly
no outgoing calls
no test coverage detected