Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/go/doc/exports.go

    // This file implements export filtering of an AST.
    
    package doc
    
    import (
    	"go/ast"
    	"go/token"
    )
    
    // filterIdentList removes unexported names from list in place
    // and returns the resulting list.
    func filterIdentList(list []*ast.Ident) []*ast.Ident {
    	j := 0
    	for _, x := range list {
    		if token.IsExported(x.Name) {
    			list[j] = x
    			j++
    		}
    	}
    	return list[0:j]
    }
    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