Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewPointer (0.16 sec)

  1. 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)
    		}
    	}
    }
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. 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
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
Back to top