Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for TILDE (0.04 sec)

  1. src/go/types/subst.go

    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]*Term, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = NewTerm(t.tilde, u)
    		}
    	}
    	return
    }
    
    // replaceRecvType updates any function receivers that have type old to have
    // type new. It does not modify the input slice; if modifications are required,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/operand.go

    			// representable by each specific type in the type set of T.
    			return Tp.is(func(t *term) bool {
    				if t == nil {
    					return false
    				}
    				// A term may be a tilde term but the underlying
    				// type of an untyped value doesn't change so we
    				// don't need to do anything special.
    				newType, _, _ := check.implicitTypeAndValue(x, t.typ)
    				return newType != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/subst.go

    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]*Term, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = NewTerm(t.tilde, u)
    		}
    	}
    	return
    }
    
    // replaceRecvType updates any function receivers that have type old to have
    // type new. It does not modify the input slice; if modifications are required,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"∴":                       "\u2234",
    	"Θ":                           "\u0398",
    	"  ":                      "\u205f\u200a",
    	" ":                       "\u2009",
    	"∼":                           "\u223c",
    	"≃":                      "\u2243",
    	"≅":                  "\u2245",
    	"≈":                      "\u2248",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    }
    
    func (h Hasher) hashTermSet(terms []*types.Term) uint32 {
    	hash := 9157 + 2*uint32(len(terms))
    	for _, term := range terms {
    		// term order is not significant.
    		termHash := h.Hash(term.Type())
    		if term.Tilde() {
    			termHash *= 9161
    		}
    		hash += 3 * termHash
    	}
    	return hash
    }
    
    // hashTypeParam returns a hash of the type parameter t, with a hash value
    // depending on whether t is contained in h.sigTParams.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/html/entity.go

    		"Tfr;":                             '\U0001D517',
    		"Therefore;":                       '\U00002234',
    		"Theta;":                           '\U00000398',
    		"ThinSpace;":                       '\U00002009',
    		"Tilde;":                           '\U0000223C',
    		"TildeEqual;":                      '\U00002243',
    		"TildeFullEqual;":                  '\U00002245',
    		"TildeTilde;":                      '\U00002248',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    		if s.ch == '=' {
    			s.nextch()
    			s.op, s.prec = Neq, precCmp
    			s.tok = _Operator
    			break
    		}
    		s.op, s.prec = Not, 0
    		s.tok = _Operator
    
    	case '~':
    		s.nextch()
    		s.op, s.prec = Tilde, 0
    		s.tok = _Operator
    
    	default:
    		s.errorf("invalid character %#U", s.ch)
    		s.nextch()
    		goto redo
    	}
    
    	return
    
    assignop:
    	if s.ch == '=' {
    		s.nextch()
    		s.tok = _AssignOp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "'\\U0000ff16'", 0, 0},
    	{_Literal, "`foobar`", 0, 0},
    	{_Literal, "`foo\tbar`", 0, 0},
    	{_Literal, "`\r`", 0, 0},
    
    	// operators
    	{_Operator, "!", Not, 0},
    	{_Operator, "~", Tilde, 0},
    
    	{_Operator, "||", OrOr, precOrOr},
    
    	{_Operator, "&&", AndAnd, precAndAnd},
    
    	{_Operator, "==", Eql, precCmp},
    	{_Operator, "!=", Neq, precCmp},
    	{_Operator, "<", Lss, precCmp},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  9. cmd/object-api-utils_test.go

    		{"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", true},
    		{"␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡", true},
    		{"trailing VT␋/trailing VT␋", true},
    		{"␋leading VT/␋leading VT", true},
    		{"~leading tilde", true},
    		{"\rleading CR", true},
    		{"\nleading LF", true},
    		{"\tleading HT", true},
    		{"trailing CR\r", true},
    		{"trailing LF\n", true},
    		{"trailing HT\t", true},
    		// cases for which test should fail.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/mdo/reader-stax.vm

            entities.put("Scaron", "\u0160");
            entities.put("scaron", "\u0161");
            entities.put("Yuml", "\u0178");
            entities.put("circ", "\u02c6");
            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top