On Fri, 12 Jul 2013 10:14:53 +0800, Alan Manuel Gloria <almkg...@gmail.com> 
wrote:
> Haha more nasty tagging values hahahaha!  We never seem to get rid of them!

:-).

> ; unique tagging value
> (define EMPTY (cons '() '()))

Right.

The notion that a reader might find that a sequence of characters maps to
"no value at all" (distinct from (), "", and 0) isn't really that bizarre or 
nasty.
It's just that there's no standard way to represent it in Lisp.
Cue the Haskell'ers, who will tell me about "Maybe"....!
In Scheme and Common Lisp you could return (values), but that isn't really 
enough,
because you then need to pass around "there is no value here" and determine
if it's true or not.

That said, this "empty" would be entirely internal to the reader; if a value is
determined to be empty at the top level, we'll just recurse back and
try again (just as all readers do for comments).  So it's merely a convenience 
for
notation and implementation, not something users will see directly.

Again, if anyone has a better idea, I'm all ears.
My goal is "Simple as possible, but no simpler."

> Basically, our previous (before SRFI-110) implementations made use of
> lots of these objects.  There's even a dangling "special tag to denote
> comment return from hash-processing" which no longer comments anything
> at all, the special tag having been removed.

Whups!  Feel free to remove the obsolete code!

--- David A. Wheeler

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
Readable-discuss mailing list
Readable-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/readable-discuss

Reply via email to