Re: [racket-users] What precisely is the type/contract ‘TST’ ?

2017-04-09 Thread Robby Findler
Indeed, these docs were written a long time ago. also, (listof any/c) is the same thing as list? in the contract system. Robby On Sun, Apr 9, 2017 at 3:08 PM, Jay McCarthy wrote: > It is legacy. Modern code would just write any/c or list? > > Jay > > On Sun, Apr 9,

Re: [racket-users] What precisely is the type/contract ‘TST’ ?

2017-04-09 Thread Jay McCarthy
It is legacy. Modern code would just write any/c or list? Jay On Sun, Apr 9, 2017 at 2:51 PM, gfb wrote: > Is it legacy, or is there a current reason/heuristic to choose it over > ‘any/c’ ? > > On Sunday, 9 April 2017 14:14:29 UTC-4, Jay McCarthy wrote: >> TST means The

Re: [racket-users] What precisely is the type/contract ‘TST’ ?

2017-04-09 Thread gfb
Is it legacy, or is there a current reason/heuristic to choose it over ‘any/c’ ? On Sunday, 9 April 2017 14:14:29 UTC-4, Jay McCarthy wrote: > TST means The Scheme Type, i.e. everything is permitted.  > > > Jay > > > > On Sun, Apr 9, 2017 at 1:02 PM gfb wrote: > It

Re: [racket-users] What precisely is the type/contract ‘TST’ ?

2017-04-09 Thread Jay McCarthy
TST means The Scheme Type, i.e. everything is permitted. Jay On Sun, Apr 9, 2017 at 1:02 PM gfb wrote: > It appears, e.g., in: > > (send a-drracket:rep:text display-results results) → void? > results : (list-of TST) > > A search of all racket files shows it used at