Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for deleteArgs (0.14 sec)

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

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    import "unsafe"
    
    func Append() {
    	_ = append(appendArgs())
    }
    
    func Delete() {
    	delete(deleteArgs())
    }
    
    func Print() {
    	print(ints())
    }
    
    func Println() {
    	println(ints())
    }
    
    func Complex() {
    	_ = complex(float64s())
    }
    
    func Copy() {
    	copy(slices())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 18:02:40 UTC 2022
    - 933 bytes
    - Viewed (0)
Back to top