Re: [racket-users] Get contract from function

2018-08-24 Thread Robby Findler
Perhaps object-contract? Note that this might not return a contract, however, in which case, the function might return anything. Robby On Fri, Aug 24, 2018 at 7:50 AM Joao Pedro Abreu De Souza wrote: > > Hi. I am contributing in a library that create functions to parse PEG(parsing > expression

Re: [racket-users] Get contract from function

2018-08-24 Thread Alex Knauth
> On Aug 24, 2018, at 8:50 AM, Joao Pedro Abreu De Souza > wrote: > > Hi. I am contributing in a library that create functions to parse PEG(parsing > expression grammar). To implement a feature, I need to know the return's type > of a function. We are using racket, not typed-racket, so I thi