Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for filterIdentList (0.32 sec)

  1. src/go/ast/filter.go

    	return filterPackage(pkg, exportFilter, true)
    }
    
    // ----------------------------------------------------------------------------
    // General filtering
    
    type Filter func(string) bool
    
    func filterIdentList(list []*Ident, f Filter) []*Ident {
    	j := 0
    	for _, x := range list {
    		if f(x.Name) {
    			list[j] = x
    			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