Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for filterSpecList (0.21 sec)

  1. src/go/ast/filter.go

    			// out.
    			// If the type contains filtered elements,
    			// keep the declaration.
    			return filterType(s.Type, f, export)
    		}
    	}
    	return false
    }
    
    func filterSpecList(list []Spec, f Filter, export bool) []Spec {
    	j := 0
    	for _, s := range list {
    		if filterSpec(s, f, export) {
    			list[j] = s
    			j++
    		}
    	}
    	return list[0:j]
    }
    
    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