Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnsafeAdd (0.11 sec)

  1. test/fixedbugs/issue52590.dir/a.go

    }
    
    func Print() {
    	print(ints())
    }
    
    func Println() {
    	println(ints())
    }
    
    func Complex() {
    	_ = complex(float64s())
    }
    
    func Copy() {
    	copy(slices())
    }
    
    func UnsafeAdd() {
    	_ = unsafe.Add(unsafeAdd())
    }
    
    func UnsafeSlice() {
    	_ = unsafe.Slice(unsafeSlice())
    }
    
    func appendArgs() ([]int, int) {
    	return []int{}, 0
    }
    
    func deleteArgs() (map[int]int, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 18:02:40 UTC 2022
    - 933 bytes
    - Viewed (0)
  2. test/fixedbugs/issue52590.dir/b.go

    // license that can be found in the LICENSE file.
    
    package b
    
    import "./a"
    
    func f() {
    	a.Append()
    	a.Delete()
    	a.Print()
    	a.Println()
    	a.Complex()
    	a.Copy()
    	a.UnsafeAdd()
    	a.UnsafeSlice()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 18:02:40 UTC 2022
    - 301 bytes
    - Viewed (0)
Back to top