Jump to page: 1 2
Thread overview
Pending peeves again - getting tired of waiting
Jul 07, 2004
Stewart Gordon
Jul 07, 2004
Charlie
Jul 07, 2004
Norbert Nemec
Jul 07, 2004
Andy Friesen
Jul 07, 2004
Norbert Nemec
Jul 07, 2004
Walter
Jul 07, 2004
pragma
Jul 07, 2004
Walter
Jul 08, 2004
Stewart Gordon
Array operations vs. array expressions (was: Pending peeves again - getting tired of waiting)
Jul 08, 2004
Norbert Nemec
Re: Array operations vs. array expressions
Jul 08, 2004
Stewart Gordon
Jul 08, 2004
Norbert Nemec
Jul 07, 2004
Ant
Jul 07, 2004
Charlie
Jul 07, 2004
Bent Rasmussen
Jul 07, 2004
Walter
July 07, 2004
I went to all the trouble to start this list.  And I'm quite sure I'm not the only one waiting for the items on it (some getting rather old now) to finally be dealt with.

As you see, they roughly fall into three categories:
- fixes that need to be coded up
- fixes that have already been written, and just need hooking up
- places where it's merely the documentation that needs finishing

Walter, could we please at least have a clue of where these are in your queue?

Stewart.

-- 
My e-mail is valid but not my primary mailbox, aside from its being the unfortunate victim of intensive mail-bombing at the moment.  Please keep replies on the 'group where everyone may benefit.
July 07, 2004
url is http://www.prowiki.org/wiki4d/wiki.cgi?PendingPeeves ;)

Also hate to be picky but

string.d:1488
--

char[] toString(char c)
{
char[] result = new char[2];
result[0] = c;
result[1] = 0;
return result[0 .. 1];
}

Why all those extra operations ?  When it justs need 1 char assignment ?

Charlie


In article <ccgikc$92e$1@digitaldaemon.com>, Stewart Gordon says...
>
>I went to all the trouble to start this list.  And I'm quite sure I'm not the only one waiting for the items on it (some getting rather old now) to finally be dealt with.
>
>As you see, they roughly fall into three categories:
>- fixes that need to be coded up
>- fixes that have already been written, and just need hooking up
>- places where it's merely the documentation that needs finishing
>
>Walter, could we please at least have a clue of where these are in your queue?
>
>Stewart.
>
>-- 
>My e-mail is valid but not my primary mailbox, aside from its being the unfortunate victim of intensive mail-bombing at the moment.  Please keep replies on the 'group where everyone may benefit.


July 07, 2004
Charlie wrote:

> url is http://www.prowiki.org/wiki4d/wiki.cgi?PendingPeeves ;)
> 
> Also hate to be picky but
> 
> string.d:1488
> --
> 
> char[] toString(char c)
> {
> char[] result = new char[2];
> result[0] = c;
> result[1] = 0;
> return result[0 .. 1];
> }
> 
> Why all those extra operations ?  When it justs need 1 char assignment ?

I agree! It should be:

-----------------------
char[] toString(char c)
{
        char[] result = new char[1];
        result[0] = c;
        return result;
}
-----------------------

All that putting in trailing 0s automatically should be avoided. If you need to interface C-code, you should do the conversion explicitely. Of course that is less efficient, but why should the native string handling code suffer for that? The native-string library should not care about trailing 0s at all!

July 07, 2004
"Stewart Gordon" <smjg_1998@yahoo.com> wrote in message news:ccgikc$92e$1@digitaldaemon.com...
> I went to all the trouble to start this list.  And I'm quite sure I'm not the only one waiting for the items on it (some getting rather old now) to finally be dealt with.
>
> As you see, they roughly fall into three categories:
> - fixes that need to be coded up
> - fixes that have already been written, and just need hooking up
> - places where it's merely the documentation that needs finishing
>
> Walter, could we please at least have a clue of where these are in your queue?

There are hundreds of items in the bug list, I try to give priority to crashers. Anyhow, I've stopped adding new features, and have just been working the bug list.


July 07, 2004
In article <ccgikc$92e$1@digitaldaemon.com>, Stewart Gordon says...
>
>
>Walter, could we please at least have a clue of where these are in your queue?

That would be nice!

but i see it like this:
We are very lucky that Walter decided to offer D to the world.
Unfortunatly the over centralized development model might not
seem the best to all of us but that's how Walter prefers to do it.

So please join me in saying:
Walter thank you for D,
and please take a few weeks vacations I'm here for a year and never saw
you miss a single day. That can't be good. We can wait.

:)

Ant


July 07, 2004
>We are very lucky that Walter decided to offer D to the world.
Hear Hear!

He has been sweating over this for years, and I think a vacation is well deserved :).  We can wait.

Charlie



In article <cchdgn$1g4d$1@digitaldaemon.com>, Ant says...
>
>In article <ccgikc$92e$1@digitaldaemon.com>, Stewart Gordon says...
>>
>>
>>Walter, could we please at least have a clue of where these are in your queue?
>
>That would be nice!
>
>but i see it like this:
>We are very lucky that Walter decided to offer D to the world.
>Unfortunatly the over centralized development model might not
>seem the best to all of us but that's how Walter prefers to do it.
>
>So please join me in saying:
>Walter thank you for D,
>and please take a few weeks vacations I'm here for a year and never saw
>you miss a single day. That can't be good. We can wait.
>
>:)
>
>Ant
>
>


July 07, 2004
In article <cchbph$1dmh$1@digitaldaemon.com>, Walter says...
>
>There are hundreds of items in the bug list, I try to give priority to crashers. Anyhow, I've stopped adding new features, and have just been working the bug list.

I don't think it's said enough around here: Thank you for all your hard work.

D is a wonderful language and has truely changed how I approach solving problems with software.

- Pragma


July 07, 2004
"pragma" <EricAnderton at yahoo dot compragma_member@pathlink.com> wrote in message news:cchftn$1jv5$1@digitaldaemon.com...
> In article <cchbph$1dmh$1@digitaldaemon.com>, Walter says...
> >
> >There are hundreds of items in the bug list, I try to give priority to crashers. Anyhow, I've stopped adding new features, and have just been working the bug list.
>
> I don't think it's said enough around here: Thank you for all your hard
work.
>
> D is a wonderful language and has truely changed how I approach solving
problems
> with software.

Thanks! D is the language I always wanted to use, too <g>.


July 07, 2004
> So please join me in saying:
> Walter thank you for D,
> and please take a few weeks vacations I'm here for a year and never saw
> you miss a single day. That can't be good. We can wait.

Yes, thanks for D, its great.

Walter may resemble Santa but he ain't got unlimited resources. :-)

> :)
>
> Ant
>
>


July 07, 2004
Norbert Nemec wrote:
> It should be:
> 
> -----------------------
> char[] toString(char c)
> {
>         char[] result = new char[1];
>         result[0] = c;
>         return result;
> }

Or just:

    char[] toString(char c) { return (&c)[0..1].dup; }

 -- andy
« First   ‹ Prev
1 2