Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for exportSliceOut (0.33 sec)

  1. src/cmd/cgo/internal/test/testx.go

    func exportcomplex128() complex128 {
    	return 0
    }
    
    // issue 3741
    
    //export exportSliceIn
    func exportSliceIn(s []byte) bool {
    	return len(s) == cap(s)
    }
    
    //export exportSliceOut
    func exportSliceOut() []byte {
    	return []byte{1}
    }
    
    //export exportSliceInOut
    func exportSliceInOut(s []byte) []byte {
    	return s
    }
    
    // issue 3775
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top