- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NewPointer (0.04 seconds)
-
api/go1.5.txt
pkg go/types, func NewPackage(string, string) *Package pkg go/types, func NewParam(token.Pos, *Package, string, Type) *Var pkg go/types, func NewPkgName(token.Pos, *Package, string, *Package) *PkgName pkg go/types, func NewPointer(Type) *Pointer pkg go/types, func NewScope(*Scope, token.Pos, token.Pos, string) *Scope pkg go/types, func NewSignature(*Var, *Tuple, *Tuple, bool) *Signature pkg go/types, func NewSlice(Type) *Slice
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
src/cmd/api/main_test.go
} } // emit methods with pointer receiver; exclude // methods that we have emitted already // (the method set of *T includes the methods of T) pset := types.NewMethodSet(types.NewPointer(typ)) for i, n := 0, pset.Len(); i < n; i++ { m := pset.At(i) if m.Obj().Exported() && !methodNames[m.Obj().Name()] { w.emitMethod(m) } } }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Mar 02 13:20:41 GMT 2026 - 31.4K bytes - Click Count (0)