From: Nilone on
Can and should scalar data types like integer or real by implemented
as recursive types? If so, how? I've look at some papers by William
Cook which describes how to implement Point and ISet as recursive
types, but he assumes an existing integer type.
From: raould on
On Mar 12, 6:17 am, Nilone <rea...(a)gmail.com> wrote:
> Can and should scalar data types like integer or real by implemented
> as recursive types?  If so, how?  I've look at some papers by William
> Cook which describes how to implement Point and ISet as recursive
> types, but he assumes an existing integer type.

some people say it is not a good approach.

http://lambda-the-ultimate.org/node/3668#comment-51954
From: Nilone on
On Mar 16, 11:30 pm, raould <rao...(a)gmail.com> wrote:
> On Mar 12, 6:17 am, Nilone <rea...(a)gmail.com> wrote:
>
> > Can and should scalar data types like integer or real by implemented
> > as recursive types?  If so, how?  I've look at some papers by William
> > Cook which describes how to implement Point and ISet as recursive
> > types, but he assumes an existing integer type.
>
> some people say it is not a good approach.
>
> http://lambda-the-ultimate.org/node/3668#comment-51954

Thanks, that looks like a good thread with lots of info. I'll work
through it.