Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for intersectTermLists (0.24 sec)

  1. src/go/types/typeset.go

    		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
    	}
    
    	ityp.tset.comparable = allComparable
    	if len(allMethods) != 0 {
    		sortMethods(allMethods)
    		ityp.tset.methods = allMethods
    	}
    	ityp.tset.terms = allTerms
    
    	return ityp.tset
    }
    
    // TODO(gri) The intersectTermLists function belongs to the termlist implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeset.go

    		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
    	}
    
    	ityp.tset.comparable = allComparable
    	if len(allMethods) != 0 {
    		sortMethods(allMethods)
    		ityp.tset.methods = allMethods
    	}
    	ityp.tset.terms = allTerms
    
    	return ityp.tset
    }
    
    // TODO(gri) The intersectTermLists function belongs to the termlist implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top