[Issue 7132] [tdpl] Exponential operator ^^ for integrals does not compile without any import

2014-01-06 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=7132


Andrej Mitrovic  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||andrej.mitrov...@gmail.com
 Resolution||WORKSFORME


--- Comment #2 from Andrej Mitrovic  2014-01-06 
12:53:12 PST ---
Works since v2.064.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7132] [tdpl] Exponential operator ^^ for integrals does not compile without any import

2011-12-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7132


Don  changed:

   What|Removed |Added

 CC||clugd...@yahoo.com.au


--- Comment #1 from Don  2011-12-24 04:52:18 PST ---
That's because ^^ requires import std.math;
To make it work without the import, we need to move the intpow function out of
std.math, and into the runtime.

That's quite reasonable, provided we don't have to do the same for floating
point powers.
(To implement floating point powers, most of std.math would need to move to the
runtime. In fact to do it with correct rounding, parts of bigint would be
required as well).

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---