(goType: string | undefined)
| 365 | } |
| 366 | |
| 367 | function goTypeIsSlice(goType: string | undefined): boolean { |
| 368 | return goType?.startsWith("[]") ?? false; |
| 369 | } |
| 370 | |
| 371 | function goTypeIsMap(goType: string | undefined): boolean { |
| 372 | return goType?.startsWith("map[") ?? false; |
no outgoing calls
no test coverage detected
searching dependent graphs…