Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for keyMap (0.2 sec)

  1. src/go/types/expr.go

    				check.assignment(x, utyp.key, "map literal")
    				if x.mode == invalid {
    					continue
    				}
    				if x.mode == constant_ {
    					duplicate := false
    					xkey := keyVal(x.val)
    					if keyIsInterface {
    						for _, vtyp := range visited[xkey] {
    							if Identical(vtyp, x.typ) {
    								duplicate = true
    								break
    							}
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    				check.assignment(x, utyp.key, "map literal")
    				if x.mode == invalid {
    					continue
    				}
    				if x.mode == constant_ {
    					duplicate := false
    					xkey := keyVal(x.val)
    					if keyIsInterface {
    						for _, vtyp := range visited[xkey] {
    							if Identical(vtyp, x.typ) {
    								duplicate = true
    								break
    							}
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top