[go-nuts] Place of the Pointer type inside unsafe.package

2017-02-16 Thread lael . cellier
Hello, I'm trying to redeclare the Pointer type I found unsafe/unsafe.go inside compiler source where the Pointer type is declared like this : type ArbitraryType int type Pointer *ArbitraryType. but obviously, this isn’t the declaration which used with Pointer() inside normal programs : package

Re: [go-nuts] Place of the Pointer type inside unsafe.package

2017-02-16 Thread lael . cellier
Le jeudi 16 février 2017 17:46:15 UTC+1, Axel Wagner a écrit : > > The unsafe package is pretty much virtual. The compiler is aware of it and > implements the operations defined by the spec > to be in it. > Is it the same for C.call() in the case of th