Re: [Pharo-dev] UFFI #isPointer - absolute or versus naturalPointerArity

2016-09-27 Thread Eliot Miranda
Hi Ben, On Tue, Sep 27, 2016 at 8:40 AM, Ben Coman wrote: > First, my C is a bit rusty so a question about semantics... > > int * a; > typedef int * MyInt; > MyInt b; > > So obviously the type of 'a' is a pointer, > but is the type of 'b' a pointer? > My intuition is

[Pharo-dev] UFFI #isPointer - absolute or versus naturalPointerArity

2016-09-27 Thread Ben Coman
First, my C is a bit rusty so a question about semantics... int * a; typedef int * MyInt; MyInt b; So obviously the type of 'a' is a pointer, but is the type of 'b' a pointer? My intuition is that its not, since the pointer is wrapped inside the type. Now in my UFFI tutorial