Re: a success story for D ! !!

2015-05-06 Thread Sumit Adhikari via Digitalmars-d
On Tuesday, 5 May 2015 at 12:04:39 UTC, Alex Ogheri wrote: Hi guys, did you know this ?? http://vlang.org/ In fact, it gathered quite an enthusiastic appreciation at dvcon It seems Vlang appeared silent for a while. Puneet was very busy with core simulator and I was not able to help him.

Re: Understanding and new language feature proposal

2014-01-19 Thread Sumit Adhikari
and not embedded systems friendly. Regards, Sumit On Monday, 6 January 2014 at 09:41:12 UTC, bearophile wrote: Sumit Adhikari: unsigned bits(179:0) a ; unsigned bits(179:0) b ; unsigned bits(179:0) result = a + b ; What about this syntax: UnsignedBits!(179, 0) a, b; UnsignedBits!(179, 0

Re: Understanding and new language feature proposal

2014-01-19 Thread Sumit Adhikari
Just a twist : unsigned bits(179:0) a ; unsigned bits(179:0) b ; unsigned bits(190:0) result = a + b ; OR unsigned bits(108826676:0) result = a + b ; Regards, Sumit On Monday, 6 January 2014 at 09:41:12 UTC, bearophile wrote: Sumit Adhikari: unsigned bits(179:0) a ; unsigned bits(179:0

Re: Understanding and new language feature proposal

2014-01-06 Thread Sumit Adhikari
all I wanted to say. Do not want to up-cast and then down-cast or vice-versa. I just requested for a clean thing which will be used a lot if available. On Monday, 6 January 2014 at 11:27:03 UTC, Dmitry Olshansky wrote: 06-Jan-2014 14:31, Sumit Adhikari пишет: This is a great syntax and I

Understanding and new language feature proposal

2014-01-05 Thread Sumit Adhikari
The birth and evolution of d language is to provide a modern and better alternative to C++! If I look at C++ then C++ is a systems programming language. The use cases of C++ is OS and embedded systems writing. Why? C++ claims to extract last drop out of HW. If I look correctly rarely C++ is

Re: D Language Citation

2013-11-17 Thread Sumit Adhikari
, Sumit Adhikari wrote: Dear User Community, This mail is in particular to the citation of D. D is extremely poorly cited (Yes this comes from a RD guy). I searched and searched (everywhere including IEEEXplore) and nothing comes in my hand! There are materials available on internet

Re: D Language Citation

2013-11-17 Thread Sumit Adhikari
-- Sumit Adhikari,

D Language Citation

2013-11-16 Thread Sumit Adhikari
Dear User Community, This mail is in particular to the citation of D. D is extremely poorly cited (Yes this comes from a RD guy). I searched and searched (everywhere including IEEEXplore) and nothing comes in my hand! There are materials available on internet which are not peer reviewed

D Language Citation

2013-11-16 Thread Sumit Adhikari
and hence I cannot use for Journal citation! It is like I have everything but I cannot cite! It would be great idea as a beneficiary of D to publish for the future of D. Please consider what I am saying :). Please publish. Regards, -- Sumit Adhikari

Re: D Language Citation

2013-11-16 Thread Sumit Adhikari
On Sunday, 17 November 2013 at 07:03:53 UTC, Sumit Adhikari wrote: Dear User Community, This mail is in particular to the citation of D. D is extremely poorly cited (Yes this comes from a RD guy). I searched and searched (everywhere including IEEEXplore) and nothing comes in my hand

Reg :: Comment my Code

2013-11-09 Thread Sumit Adhikari
I am new in D Language. Following code is working fine. Still I want you people to comment on issues of my code. Every code is designed to accomplish some particular job - consider my code is generic. I will be obliged if you may please spend some time for my D learning.

Re: D Language Gotchas

2013-11-05 Thread Sumit Adhikari
One big gotcha of this forum is that when I reply I will have to reply only one person and hence I cannot thank everybody using one mail! Indeed I am happy that I have some pointers and I thank everybody for participation. My need was to create a qualitative analysis document for the case

D Language Gotchas

2013-11-04 Thread Sumit Adhikari
Dear All, I searched internet also I searched this forum for D Language gotchas. In this forum, I found a thread which is from 2005 and I do not know latest updates on that. My question is that - Are there known programming gotchas of D language ? If will be grateful if I get some

Re: Aspect Oriented Programming in D

2013-10-30 Thread Sumit Adhikari
Many thanks for the link. Regards, Sumit On Wednesday, 30 October 2013 at 06:57:08 UTC, luka8088 wrote: On 30.10.2013. 5:05, Sumit Adhikari wrote: Dear All, I want to exploit D Language for Aspect Oriented Programming. I would like to have a discussion with people who have similar

Aspect Oriented Programming in D

2013-10-29 Thread Sumit Adhikari
Dear All, I want to exploit D Language for Aspect Oriented Programming. I would like to have a discussion with people who have similar interest in D AOP and who possibly have implemented AOP in D. Would be great to have a productive discussion. Regards, Sumit

Nested for loop issue

2013-10-27 Thread Sumit Adhikari
Dear All, Greetings! I has been an hour I starting making my hands dirty with D. I wrote following program: import std.string; import std.stdio; ushort adder(ushort a, ushort b) { return (cast(ushort)(a + b)) ; } unittest { bool testStimEq(ushort a, ushort b, ushort result){

Re: Nested for loop issue

2013-10-27 Thread Sumit Adhikari
On Sunday, 27 October 2013 at 09:33:32 UTC, safety0ff wrote: On Sunday, 27 October 2013 at 09:05:06 UTC, Sumit Adhikari wrote: for (ushort i = 0 ; i 65536 ; ++i){ // Holy King-Kong! for (ushort j = 0 ; j 65536 ; ++j){ status += testStimEq(i,j,cast(ushort)(i+j