Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lookupTypeParam (0.14 sec)

  1. src/go/doc/reader.go

    			return
    		}
    	}
    
    	// just an ordinary function
    	r.funcs.set(fun, r.mode&PreserveAST != 0)
    }
    
    // lookupTypeParam searches for type parameters named name within the tparams
    // field list, returning the relevant identifier if found, or nil if not.
    func lookupTypeParam(name string, tparams *ast.FieldList) *ast.Ident {
    	if tparams == nil {
    		return nil
    	}
    	for _, field := range tparams.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top