Jump to page: 1 29  
Page
Thread overview
DMD 0.92 release
Jun 07, 2004
Walter
Jun 07, 2004
DemmeGod
Jun 07, 2004
J Anderson
Jun 07, 2004
J C Calvarese
Jun 08, 2004
Charlie
Jun 08, 2004
James Widman
Jun 07, 2004
Sean Kelly
Jun 07, 2004
Walter
Jun 07, 2004
David L. Davis
Jun 08, 2004
Walter
Jun 08, 2004
David L. Davis
Jun 08, 2004
Walter
Jun 08, 2004
Arcane Jill
Jun 08, 2004
Walter
Jun 08, 2004
David L. Davis
Jun 08, 2004
Walter
Jun 08, 2004
Arcane Jill
Jun 08, 2004
David L. Davis
Jun 08, 2004
David L. Davis
Jun 08, 2004
Walter
Jun 08, 2004
Regan Heath
Jun 08, 2004
David L. Davis
Jun 08, 2004
Regan Heath
in != const (was Re: DMD 0.92 release)
Jun 08, 2004
Arcane Jill
Jun 09, 2004
David L. Davis
Jun 09, 2004
Vathix
Jun 10, 2004
David L. Davis
Jun 09, 2004
Walter
Jun 10, 2004
David L. Davis
Jun 11, 2004
Walter
Jun 11, 2004
David L. Davis
Jun 12, 2004
David L. Davis
Jun 15, 2004
David L. Davis
Jun 09, 2004
Arcane Jill
Jun 09, 2004
Chr. Grade
Jun 09, 2004
Stewart Gordon
Jun 09, 2004
Hauke Duden
Jun 09, 2004
Stewart Gordon
Jun 09, 2004
Hauke Duden
Jun 09, 2004
Stewart Gordon
Re: DMD 0.92 release (but actually about Unicode)
Jun 09, 2004
Arcane Jill
Jun 09, 2004
Hauke Duden
Jun 10, 2004
Arcane Jill
Jun 10, 2004
Hauke Duden
Jun 11, 2004
Walter
Jun 12, 2004
Hauke Duden
Jun 13, 2004
Arcane Jill
Jun 13, 2004
Arcane Jill
Jun 13, 2004
Hauke Duden
Jun 13, 2004
Arcane Jill
Jun 13, 2004
Hauke Duden
Jun 09, 2004
Hauke Duden
Jun 10, 2004
Stewart Gordon
Jun 10, 2004
Hauke Duden
Welsh capital digraphs (was: DMD 0.92 release)
Jun 10, 2004
Stewart Gordon
Jun 10, 2004
Arcane Jill
Jun 11, 2004
Walter
Jun 09, 2004
David L. Davis
Jun 08, 2004
Charlie
How to compare case in Unicode
Jun 08, 2004
Arcane Jill
Case-insensitive find (was DMD 0.92 release)
Jun 08, 2004
Arcane Jill
Jun 08, 2004
Jeroen van Bemmel
Jun 08, 2004
Ant
Jun 08, 2004
Ivan Senji
Jun 08, 2004
Stewart Gordon
Jun 08, 2004
Walter
Jun 08, 2004
Hauke Duden
Jun 08, 2004
Stewart Gordon
Jun 08, 2004
Ant
Jun 08, 2004
Walter
Bit array slices again (was: DMD 0.92 release)
Jun 08, 2004
Stewart Gordon
Jun 08, 2004
Walter
Jun 08, 2004
Ivan Senji
Jun 08, 2004
Arcane Jill
Re: Bit array slices again
Jun 09, 2004
Stewart Gordon
Jun 09, 2004
Walter
Jun 09, 2004
Arcane Jill
Jun 11, 2004
Walter
Jun 11, 2004
Arcane Jill
Jun 11, 2004
Sean Kelly
Jun 14, 2004
Stewart Gordon
Jun 14, 2004
Arcane Jill
Jun 09, 2004
J Anderson
Jun 10, 2004
Stewart Gordon
Jun 08, 2004
Sean Kelly
Jun 08, 2004
Kris
June 07, 2004
It's now possible to do assymmetrical operator overloads with commutative operators like +.

And it's now possible to create a << stream operator overloading in D. Not that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).

http://www.digitalmars.com/d/changelog.html


June 07, 2004
Package attribute!  Yeee-haw!

On Mon, 07 Jun 2004 14:33:37 -0700, Walter wrote:

> It's now possible to do assymmetrical operator overloads with commutative operators like +.
> 
> And it's now possible to create a << stream operator overloading in D. Not that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).
> 
> http://www.digitalmars.com/d/changelog.html

June 07, 2004
Walter wrote:

>It's now possible to do assymmetrical operator overloads with commutative
>operators like +.
>
>And it's now possible to create a << stream operator overloading in D. Not
>that I endorse such a use of operator overloading for non-arithmetic
>purposes, but it's now possible (without doing free operator functions or
>needing ADL, either!).
>
>http://www.digitalmars.com/d/changelog.html
>  
>
Wow, Walter you must have been visited by an angle or something last night.  You've done a complete backflip on so many issues.  Not that I mind, its a good thing you keep an opened mind.

default arguments yay.

-- 
-Anderson: http://badmama.com.au/~anderson/
June 07, 2004
In article <ca2nau$1ath$1@digitaldaemon.com>, Walter says...
>
>It's now possible to do assymmetrical operator overloads with commutative operators like +.
>
>And it's now possible to create a << stream operator overloading in D. Not that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).

Great timing :)  I had just started looking at streams today.  Just to clarify,
it looks like the old rules would not evaluate b.opfunc_r(a) if a.opfunc is
defined, whether or not there was an overload for a.opfunc(b).  Do I have this
right?

Sean


June 07, 2004
"Sean Kelly" <sean@f4.ca> wrote in message news:ca2pn3$1et4$1@digitaldaemon.com...
> In article <ca2nau$1ath$1@digitaldaemon.com>, Walter says...
> >
> >It's now possible to do assymmetrical operator overloads with commutative operators like +.
> >
> >And it's now possible to create a << stream operator overloading in D.
Not
> >that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).
>
> Great timing :)  I had just started looking at streams today.  Just to
clarify,
> it looks like the old rules would not evaluate b.opfunc_r(a) if a.opfunc
is
> defined, whether or not there was an overload for a.opfunc(b).  Do I have
this
> right?

Right.


June 07, 2004
In article <ca2nau$1ath$1@digitaldaemon.com>, Walter says...
>
>It's now possible to do assymmetrical operator overloads with commutative operators like +.
>
>And it's now possible to create a << stream operator overloading in D. Not that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).
>
>http://www.digitalmars.com/d/changelog.html
>
>
Walter: Thxs! For the "Added default arguments to function parameters." :)) Now I can pull out all my wrapper functions...this is some really Great News!!

<*Wonders*> To you think Phobos.std.string could get a non-case sensitive
version of find (ifind) and rfind (irfind) added to it sometime in the near
future? It would be very useful (even if it just does ASCII). Thxs for your
reply in advance. :)



June 07, 2004
J Anderson wrote:
...
> default arguments yay.

Hip! Hip! Hooray!

-- 
Justin (a/k/a jcc7)
http://jcc_7.tripod.com/d/
June 08, 2004
In article <ca2oi1$1d41$1@digitaldaemon.com>,
 J Anderson <REMOVEanderson@badmama.com.au> wrote:
> Wow, Walter you must have been visited by an angle or something last night.

Angles? Dude, that's sick.  I can't help but picture some poor Flatlander's 2-dimensional body parts strewn about... :-)

All of us healthy-minded people know Walter was really visited by Mr. Hyper-sphere from 4-space.
June 08, 2004
"David L. Davis" <SpottedTiger@yahoo.com> wrote in message news:ca2u66$1lui$1@digitaldaemon.com...
> <*Wonders*> To you think Phobos.std.string could get a non-case sensitive
> version of find (ifind) and rfind (irfind) added to it sometime in the
near
> future? It would be very useful (even if it just does ASCII). Thxs for
your
> reply in advance. :)

Do you want to write one and donate it?


June 08, 2004
In article <ca2u66$1lui$1@digitaldaemon.com>, David L. Davis says...
>
>In article <ca2nau$1ath$1@digitaldaemon.com>, Walter says...
>>
>>It's now possible to do assymmetrical operator overloads with commutative operators like +.
>>
>>And it's now possible to create a << stream operator overloading in D. Not that I endorse such a use of operator overloading for non-arithmetic purposes, but it's now possible (without doing free operator functions or needing ADL, either!).
>>
>>http://www.digitalmars.com/d/changelog.html
>>
>>
>Walter: Thxs! For the "Added default arguments to function parameters." :)) Now I can pull out all my wrapper functions...this is some really Great News!!
>
><*Wonders*> To you think Phobos.std.string could get a non-case sensitive
>version of find (ifind) and rfind (irfind) added to it sometime in the near
>future? It would be very useful (even if it just does ASCII). Thxs for your
>reply in advance. :)
>
>
>

Why not tolower() both of the strings ?


« First   ‹ Prev
1 2 3 4 5 6 7 8 9