Re: show function

2003-12-05 Thread jason feingold
see the GHC library Text.Show.Functions for some insight.rui yang [EMAIL PROTECTED] wrote: I want to print a function which itself have some functions as it's parameters and will return some functions as the results, and I want to print out the result, does anyone knows how to define the instance

Re: show function

2003-12-03 Thread Christian Maeder
rui yang wrote: I want to print a function which itself have some functions as it's parameters and will return some functions as the results, and I want to print out the result, does anyone knows how to define the instance declaration of show class to this function type? I don't know if it

Re: show function

2003-12-03 Thread Jerzy Karczmarczuk
Christian Maeder wrote: rui yang wrote: I want to print a function which itself have some functions as it's parameters and will return some functions as the results, and I want to print out the result, does anyone knows how to define the instance declaration of show class to this function

Re: show function

2003-12-02 Thread Hamilton Richards
At 10:05 PM -0500 12/2/03, rui yang wrote: I want to print a function which itself have some functions as it's parameters and will return some functions as the results, and I want to print out the result, does anyone knows how to define the instance declaration of show class to this function type?