Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TI16 (0.03 sec)

  1. test/ken/convert.go

    	{ tu8,  ti8,  10 }, { tu8,  tu8,  10 }, { tu8,  ti16, 10 }, { tu8,  tu16, 10 },
    	{ tu8,  ti32, 10 }, { tu8,  tu32, 10 }, { tu8,  ti64, 10 }, { tu8,  tu64, 10 },
    	{ tu8,  tf32, 10 }, { tu8,  tf64, 10 },
    
    	{ ti16, ti8,  10 }, { ti16, tu8,  10 }, { ti16, ti16, 10 }, { ti16, tu16, 10 },
    	{ ti16, ti32, 10 }, { ti16, tu32, 10 }, { ti16, ti64, 10 }, { ti16, tu64, 10 },
    	{ ti16, tf32, 10 }, { ti16, tf64, 10 },
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  2. src/fmt/stringer_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fmt_test
    
    import (
    	. "fmt"
    	"testing"
    )
    
    type TI int
    type TI8 int8
    type TI16 int16
    type TI32 int32
    type TI64 int64
    type TU uint
    type TU8 uint8
    type TU16 uint16
    type TU32 uint32
    type TU64 uint64
    type TUI uintptr
    type TF float64
    type TF32 float32
    type TF64 float64
    type TB bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/const0.go

    	ti12 = ti3 /* ERROR "mismatched types" */ / ti0
    	ti13 = 1 % 0 /* ERROR "division by zero" */
    	ti14 = ti1 % 0 /* ERROR "division by zero" */
    	ti15 = ti3 /* ERROR "mismatched types" */ % ti0
    
    	ti16 = ti2 /* ERROR "mismatched types" */ & ti3
    	ti17 = ti2 /* ERROR "mismatched types" */ | ti4
    	ti18 = ti2 ^ ti5 // no mismatched types error because the type of ti5 is unknown
    
    	// floating point values
    	tf0 float32 = 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top