Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NumElem (0.21 sec)

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

    		for i, tf := range tfs {
    			if c := tf.Type.cmp(xfs[i].Type); c != CMPeq {
    				return c
    			}
    		}
    		return CMPeq
    
    	case TARRAY:
    		if t.NumElem() != x.NumElem() {
    			return cmpForNe(t.NumElem() < x.NumElem())
    		}
    
    	case TCHAN:
    		if t.ChanDir() != x.ChanDir() {
    			return cmpForNe(t.ChanDir() < x.ChanDir())
    		}
    
    	default:
    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