MCPcopy Index your code
hub / github.com/github/copilot-sdk / goTypeIsPointer

Function goTypeIsPointer

scripts/codegen/go.ts:363–365  ·  view source on GitHub ↗
(goType: string | undefined)

Source from the content-addressed store, hash-verified

361}
362
363function goTypeIsPointer(goType: string | undefined): boolean {
364 return goType?.startsWith("*") ?? false;
365}
366
367function goTypeIsSlice(goType: string | undefined): boolean {
368 return goType?.startsWith("[]") ?? false;

Callers 4

goTypeIsNilableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…