[racket-users] Re: How to discover a struct's interface without Dr Racket?

2021-10-29 Thread Brian Beckman
I believe that run time will be the most plausible use case. I may write macros that refer to struct-procedure names at macro-writing time, but I don't expect to invoke the struct procedures at macro-expansion time. My primary issue is "discoverability:" how can I find out the interface of any

[racket-users] Re: How to discover a struct's interface without Dr Racket?

2021-10-28 Thread jackh...@gmail.com
Are you intending to use the struct procedure names at compile time (such as in a macro) or runtime? On Tuesday, October 26, 2021 at 5:02:46 PM UTC-7 bc.be...@gmail.com wrote: > I understand why structs are opaque, by default, but I want to discover > the public interface of some struct type,