Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toBig (0.04 sec)

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

    			return bad("func must be func(yield func(...) bool): wrong argument count")
    		case toSig(typ.Params().At(0).Type()) == nil:
    			return bad("func must be func(yield func(...) bool): argument is not func")
    		case typ.Results().Len() != 0:
    			return bad("func must be func(yield func(...) bool): unexpected results")
    		}
    		cb := toSig(typ.Params().At(0).Type())
    		assert(cb.Recv() == nil)
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    			return bad("func must be func(yield func(...) bool): wrong argument count")
    		case toSig(typ.Params().At(0).Type()) == nil:
    			return bad("func must be func(yield func(...) bool): argument is not func")
    		case typ.Results().Len() != 0:
    			return bad("func must be func(yield func(...) bool): unexpected results")
    		}
    		cb := toSig(typ.Params().At(0).Type())
    		assert(cb.Recv() == nil)
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top