Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lL (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⪡":                        "\u2aa1",
    	"⩽":                  "\u2a7d",
    	"≲":                       "\u2272",
    	"𝔏":                             "\U0001d50f",
    	"⋘":                              "\u22d8",
    	"⇚":                      "\u21da",
    	"Ŀ":                          "\u013f",
    	"⟵":                   "\u27f5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. src/html/entity.go

    		"LessLess;":                        '\U00002AA1',
    		"LessSlantEqual;":                  '\U00002A7D',
    		"LessTilde;":                       '\U00002272',
    		"Lfr;":                             '\U0001D50F',
    		"Ll;":                              '\U000022D8',
    		"Lleftarrow;":                      '\U000021DA',
    		"Lmidot;":                          '\U0000013F',
    		"LongLeftArrow;":                   '\U000027F5',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    	Lo     = _Lo // Lo is the set of Unicode characters in category Lo (Letter, other).
    	Lower  = _Ll // Lower is the set of Unicode lower case letters.
    	Ll     = _Ll // Ll is the set of Unicode characters in category Ll (Letter, lowercase).
    	Mark   = _M  // Mark/M is the set of Unicode mark characters, category M.
    	M      = _M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    var builtinTypeSuffix = map[string]string{
    	"int":                "",
    	"unsigned int":       "u",
    	"long":               "l",
    	"unsigned long":      "ul",
    	"long long":          "ll",
    	"unsigned long long": "ull",
    }
    
    // Builtin float types.
    var builtinTypeFloat = map[string]bool{
    	"double":      true,
    	"long double": true,
    	"float":       true,
    	"__float128":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top