Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for consolidateMultiples (2.26 sec)

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

    	multiples bool  // if set, typ appears multiple times at this depth
    }
    
    // consolidateMultiples collects multiple list entries with the same type
    // into a single entry marked as containing multiples. The result is the
    // consolidated list.
    func consolidateMultiples(list []embeddedType) []embeddedType {
    	if len(list) <= 1 {
    		return list // at most one entry - nothing to do
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    	multiples bool  // if set, typ appears multiple times at this depth
    }
    
    // consolidateMultiples collects multiple list entries with the same type
    // into a single entry marked as containing multiples. The result is the
    // consolidated list.
    func consolidateMultiples(list []embeddedType) []embeddedType {
    	if len(list) <= 1 {
    		return list // at most one entry - nothing to do
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top