Maybe this is general question or observation, but I specifically have the problem with the xml module in Racket. All of the structures defined in collects/xml/private/structures.rkt are transparent. Most of my xml files are hundreds of thousands of bytes to tens of megabytes in size. Needless to say, if any of these make it to a display statement, it isn&#39;t pretty. Actually, since the structures also include location information, the result can be (is) larger than the actual XML was.<br>
<br>I don&#39;t think they are transparent for any reason other than some east of debugging - and for large xml structures it is actually (in my opinion) detrimental to debugging. And, it doesn&#39;t help by adding an equality test because of the location information - equal? is pretty much identical to (an extremely slow) eq? in this case.<br>
<br>Could we get rid of the #:transparent option on those structures? Or, if they are really there for a reason, at least add a prop:custom-write that limits the potential output from printing an instance?<br><br>This is the only case where I have run into the &#39;problem&#39;. But, there may be other places it exists.<br>
<br>I am also guilty of using transparent structures sometimes, so I can&#39;t be too critical here.<br><br>Doug<br>