Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for overlappingTerm (0.12 sec)

  1. src/cmd/compile/internal/types2/union.go

    	}
    	return term
    }
    
    // overlappingTerm reports the index of the term x in terms which is
    // overlapping (not disjoint) from y. The result is < 0 if there is no
    // such term. The type of term y must not be an interface, and terms
    // with an interface type are ignored in the terms list.
    func overlappingTerm(terms []*Term, y *Term) int {
    	assert(!IsInterface(y.typ))
    	for i, x := range terms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/go/types/union.go

    	}
    	return term
    }
    
    // overlappingTerm reports the index of the term x in terms which is
    // overlapping (not disjoint) from y. The result is < 0 if there is no
    // such term. The type of term y must not be an interface, and terms
    // with an interface type are ignored in the terms list.
    func overlappingTerm(terms []*Term, y *Term) int {
    	assert(!IsInterface(y.typ))
    	for i, x := range terms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top