Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for filterParamList (0.12 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)
  2. src/go/ast/filter.go

    	case *StructType:
    		if filterFieldList(t.Fields, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Fields.List) > 0
    	case *FuncType:
    		b1 := filterParamList(t.Params, f, export)
    		b2 := filterParamList(t.Results, f, export)
    		return b1 || b2
    	case *InterfaceType:
    		if filterFieldList(t.Methods, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Methods.List) > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top