Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for tilde (0.07 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    						case 0x81: // U+0301 COMBINING ACUTE ACCENT
    							s = "\u00cd" // U+00CD LATIN CAPITAL LETTER I WITH ACUTE
    						case 0x83: // U+0303 COMBINING TILDE
    							s = "\u0128" // U+0128 LATIN CAPITAL LETTER I WITH TILDE
    						case 0x88: // U+0308 COMBINING DIAERESIS
    							s = "\u00cf" // U+00CF LATIN CAPITAL LETTER I WITH DIAERESIS
    						default:
    						}
    						if s != "" {
    							c.pDst = oldPDst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/iexport.go

    //         TypeArgs []typeOff
    //         BaseType typeOff
    //     }
    //
    //     type UnionType struct {
    //         Tag     itag // interfaceType
    //         Terms   []struct {
    //             tilde bool
    //             Type  typeOff
    //         }
    //     }
    //
    //
    //
    //     type Signature struct {
    //         Params   []Param
    //         Results  []Param
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typestring.go

    		// in interfaces and syntactically cannot be empty.
    		if t.Len() == 0 {
    			w.error("empty union")
    			break
    		}
    		for i, t := range t.terms {
    			if i > 0 {
    				w.string(termSep)
    			}
    			if t.tilde {
    				w.byte('~')
    			}
    			w.typ(t.typ)
    		}
    
    	case *Interface:
    		if w.ctxt == nil {
    			if t == universeAnyAlias.Type().Underlying() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    		// in interfaces and syntactically cannot be empty.
    		if t.Len() == 0 {
    			w.error("empty union")
    			break
    		}
    		for i, t := range t.terms {
    			if i > 0 {
    				w.string(termSep)
    			}
    			if t.tilde {
    				w.byte('~')
    			}
    			w.typ(t.typ)
    		}
    
    	case *Interface:
    		if w.ctxt == nil {
    			if t == universeAnyAlias.Type().Underlying() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/instantiate.go

    		if !t.includes(V) {
    			// If V ∉ t.typ but V ∈ ~t.typ then remember this type
    			// so we can suggest it as an alternative in the error
    			// message.
    			if alt == nil && !t.tilde && Identical(t.typ, under(t.typ)) {
    				tt := *t
    				tt.tilde = true
    				if tt.includes(V) {
    					alt = t.typ
    				}
    			}
    			return true
    		}
    		return false
    	}) {
    		if cause != nil {
    			var detail string
    			switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/go/types/instantiate.go

    		if !t.includes(V) {
    			// If V ∉ t.typ but V ∈ ~t.typ then remember this type
    			// so we can suggest it as an alternative in the error
    			// message.
    			if alt == nil && !t.tilde && Identical(t.typ, under(t.typ)) {
    				tt := *t
    				tt.tilde = true
    				if tt.includes(V) {
    					alt = t.typ
    				}
    			}
    			return true
    		}
    		return false
    	}) {
    		if cause != nil {
    			var detail string
    			switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

    /**
     * {@link String}用の変換ユーティリティです。
     *
     * @author higa
     */
    public abstract class StringConversionUtil {
    
        /** WAVE DASH */
        public static final char WAVE_DASH = '\u301C';
    
        /** FULLWIDTH TILDE */
        public static final char FULLWIDTH_TILDE = '\uFF5E';
    
        /** DOUBLE VERTICAL LINE */
        public static final char DOUBLE_VERTICAL_LINE = '\u2016';
    
        /** PARALLEL TO */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typeset.go

    func (s *_TypeSet) underIs(f func(Type) bool) bool {
    	if !s.hasTerms() {
    		return f(nil)
    	}
    	for _, t := range s.terms {
    		assert(t.typ != nil)
    		// x == under(x) for ~x terms
    		u := t.typ
    		if !t.tilde {
    			u = under(u)
    		}
    		if debug {
    			assert(Identical(u, under(u)))
    		}
    		if !f(u) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/go/types/typeset.go

    func (s *_TypeSet) underIs(f func(Type) bool) bool {
    	if !s.hasTerms() {
    		return f(nil)
    	}
    	for _, t := range s.terms {
    		assert(t.typ != nil)
    		// x == under(x) for ~x terms
    		u := t.typ
    		if !t.tilde {
    			u = under(u)
    		}
    		if debug {
    			assert(Identical(u, under(u)))
    		}
    		if !f(u) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/html/template/url.go

    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    			continue
    		case '%':
    			// When normalizing do not re-encode valid escapes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top