Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsFullyInstantiated (0.12 sec)

  1. src/cmd/compile/internal/types/type.go

    		if rparam.HasShape() {
    			t.SetHasShape(true)
    			break
    		}
    	}
    }
    
    // IsFullyInstantiated reports whether t is a fully instantiated generic type; i.e. an
    // instantiated generic type where all type arguments are non-generic or fully
    // instantiated generic types.
    func (t *Type) IsFullyInstantiated() bool {
    	return len(t.RParams()) > 0
    }
    
    // Map contains Type fields specific to maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top