On Monday, 13 May 2013 at 00:21:06 UTC, John Colvin wrote:
On Monday, 13 May 2013 at 00:18:34 UTC, D-Ratiseur wrote:
I went back from a trip...basically I spent 6 monthes in
Yukon...
Then, came back to my activities, I was a lot in the library of
the university linked to my geo. location
I went back from a trip...basically I spent 6 monthes in Yukon...
Then, came back to my activities, I was a lot in the library of
the university linked to my geo. location...I've noticed a
strange guy...He was always reading some books about computer
programming languages.
After a few monthes,
On Sunday, 12 May 2013 at 18:45:29 UTC, Maxim Fomin wrote:
On Sunday, 12 May 2013 at 18:21:14 UTC, SundayMorningRunner
wrote:
On Sunday, 12 May 2013 at 18:14:51 UTC, Maxim Fomin wrote:
On Sunday, 12 May 2013 at 17:31:22 UTC, SundayMorningRunner
wrote:
Hello, let's say I have the choice between
On Thursday, 28 February 2013 at 15:35:07 UTC, Simen Kjærås wrote:
Nope.
Ok, thx, so it's like in Delphi/Fpc. Maybe the manual could
contain a remark about this.
Hello, Is it possible for an ASM function to be inlined in D?
for example I compile with -Release -inline, this function (used
in a simple console app obviously):
---
int SSERound(double AValue)
{
asm
{
cvtsd2si EAX,[AValue];
}
}
---
but, under win32, th
Hello, I'm learning D with a strong Delphi/O.Pascal background.
As a test I try to implement a system of ownership which
completelly bypasses the GC.
For the "uncollected object" ancestor, I use the example provided
in the documentation:
class TUObject: Object
{
new(size_t sz)
{