Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UntypedString (0.22 sec)

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

    	UntypedRune:    {UntypedRune, IsInteger | IsUntyped, "untyped rune"},
    	UntypedFloat:   {UntypedFloat, IsFloat | IsUntyped, "untyped float"},
    	UntypedComplex: {UntypedComplex, IsComplex | IsUntyped, "untyped complex"},
    	UntypedString:  {UntypedString, IsString | IsUntyped, "untyped string"},
    	UntypedNil:     {UntypedNil, IsUntyped, "untyped nil"},
    }
    
    var basicAliases = [...]*Basic{
    	{Byte, IsInteger | IsUnsigned, "byte"},
    	{Rune, IsInteger, "rune"},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	UntypedRune:    {UntypedRune, IsInteger | IsUntyped, "untyped rune"},
    	UntypedFloat:   {UntypedFloat, IsFloat | IsUntyped, "untyped float"},
    	UntypedComplex: {UntypedComplex, IsComplex | IsUntyped, "untyped complex"},
    	UntypedString:  {UntypedString, IsString | IsUntyped, "untyped string"},
    	UntypedNil:     {UntypedNil, IsUntyped, "untyped nil"},
    }
    
    var basicAliases = [...]*Basic{
    	{Byte, IsInteger | IsUnsigned, "byte"},
    	{Rune, IsInteger, "rune"},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/support.go

    	// untyped types
    	types.Typ[types.UntypedBool],
    	types.Typ[types.UntypedInt],
    	types.Typ[types.UntypedRune],
    	types.Typ[types.UntypedFloat],
    	types.Typ[types.UntypedComplex],
    	types.Typ[types.UntypedString],
    	types.Typ[types.UntypedNil],
    
    	// package unsafe
    	types.Typ[types.UnsafePointer],
    
    	// invalid type
    	types.Typ[types.Invalid], // only appears in packages with errors
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top