Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tup (0.45 sec)

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

    		case *Slice:
    			do(typ.Elem())
    
    		case *Interface:
    			for i := 0; i < typ.NumMethods(); i++ {
    				do(typ.Method(i).Type())
    			}
    		case *Signature:
    			tuple := func(tup *Tuple) {
    				for i := 0; i < tup.Len(); i++ {
    					do(tup.At(i).Type())
    				}
    			}
    			tuple(typ.Params())
    			tuple(typ.Results())
    		case *Struct:
    			for i := 0; i < typ.NumFields(); i++ {
    				do(typ.Field(i).Type())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/mono.go

    		case *Slice:
    			do(typ.Elem())
    
    		case *Interface:
    			for i := 0; i < typ.NumMethods(); i++ {
    				do(typ.Method(i).Type())
    			}
    		case *Signature:
    			tuple := func(tup *Tuple) {
    				for i := 0; i < tup.Len(); i++ {
    					do(tup.At(i).Type())
    				}
    			}
    			tuple(typ.Params())
    			tuple(typ.Results())
    		case *Struct:
    			for i := 0; i < typ.NumFields(); i++ {
    				do(typ.Field(i).Type())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top