the discussion so far
Matthew Flatt
(16 Jul 2005 12:41 UTC)
|
||
(missing)
|
||
(missing)
|
||
Re: the discussion so far
Alex Shinn
(20 Jul 2005 02:50 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(20 Jul 2005 02:56 UTC)
|
||
Re: the discussion so far
Alex Shinn
(20 Jul 2005 03:15 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(20 Jul 2005 03:24 UTC)
|
||
Re: the discussion so far
Alex Shinn
(20 Jul 2005 03:38 UTC)
|
||
Re: the discussion so far Thomas Bushnell BSG (20 Jul 2005 03:49 UTC)
|
||
Re: the discussion so far
John.Cowan
(20 Jul 2005 04:24 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(20 Jul 2005 04:27 UTC)
|
||
Re: the discussion so far
John.Cowan
(20 Jul 2005 04:58 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(20 Jul 2005 05:04 UTC)
|
||
(missing)
|
||
(missing)
|
||
Re: the discussion so far
bear
(20 Jul 2005 02:45 UTC)
|
||
Re: the discussion so far
John.Cowan
(20 Jul 2005 03:56 UTC)
|
||
Re: the discussion so far
Jorgen Schaefer
(16 Jul 2005 13:05 UTC)
|
||
Re: the discussion so far
Matthew Flatt
(16 Jul 2005 13:21 UTC)
|
||
Re: the discussion so far
Jorgen Schaefer
(16 Jul 2005 13:58 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(17 Jul 2005 02:42 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(17 Jul 2005 02:57 UTC)
|
||
Re: the discussion so far
Jorgen Schaefer
(17 Jul 2005 03:33 UTC)
|
||
Re: the discussion so far
bear
(16 Jul 2005 18:07 UTC)
|
||
Re: the discussion so far
John.Cowan
(17 Jul 2005 04:49 UTC)
|
||
Re: the discussion so far
Thomas Bushnell BSG
(17 Jul 2005 02:40 UTC)
|
Alex Shinn <xxxxxx@gmail.com> writes: > I'm sorry, perhaps I misunderstood, but I'm still not clear what you're > arguing in favor of. Do you want to leave all existing R5RS character and > string procedures unspecified, optionally introducing new versions with > ascii- or unicode- prefixes? Well, what I'm arguing in favor of is standardizing only things which will not hamper fancy-schmancy "full-Unicode" support (with all the optional little bits that aren't Unicode-proper). I am arguing against the requirement of functions which are being specified to do things which are the Wrong Thing on such systems, both because: The system shouldn't be forced to have a bogus function lying around confusing its users, and Portable code should automagically do the right thing on a fancy-schmancy system. Suppose we made the mistake of saying that all numbers must be comparable by <, with full trichotomy. Or we demanded that multiplication must be commutative. Then we would have messed up. We would have prevented complex numbers or quaternions from being implemented carefully. By contrast, Scheme did this right. Nobody has to support complex numbers or quaternions, but we also don't specify whether multiplication is commutative or whether < is a total order on numbers. I want generically-named procedures to do the correct generic thing on the local system. I want no generically-named procedures mandated by the standard when they cannot be implemented correctly on a fancy/schmancy system. If there is a need or desire for non-generically-named procedures, that's fine. So ascii-upcase (or whatever) is fine. But char-upcase is not, even if you then say "oh, and it breaks if the character isn't ascii." This means we must get rid of the existing case-mapping functions in R5RS. They must go. They are the *problem*. Now if you want, as a system implementor, to continue to implement them, go right ahead. But *please* don't force every Scheme system, include a fancy/schmancy one, to do so! Thomas