Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for filterParamList (0.25 sec)

  1. src/go/doc/exports.go

    		r.filterType(nil, t.Elt)
    	case *ast.StructType:
    		if r.filterFieldList(parent, t.Fields, nil) {
    			t.Incomplete = true
    		}
    	case *ast.FuncType:
    		r.filterParamList(t.TypeParams)
    		r.filterParamList(t.Params)
    		r.filterParamList(t.Results)
    	case *ast.InterfaceType:
    		if r.filterFieldList(parent, t.Methods, t) {
    			t.Incomplete = true
    		}
    	case *ast.MapType:
    		r.filterType(nil, t.Key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top