Thread overview
[Issue 13369] std.math.iLog10
Dec 01, 2015
bb.temp@gmx.com
Dec 02, 2015
ag0aep6g@gmail.com
Dec 23, 2016
Eduard Staniloiu
Mar 21, 2020
Basile-z
Dec 17, 2022
Iain Buclaw
August 25, 2014
https://issues.dlang.org/show_bug.cgi?id=13369

--- Comment #1 from bearophile_hugs@eml.cc ---
An example of the risks of using ceil(log10):


void main() {
    import std.stdio, std.math;
    immutable x = 10 ^^ 7;
    writefln("%1.20f", x.log10);
    writeln(x.log10.ceil);
}


Output:
7.00000000000000000040
8

--
December 01, 2015
https://issues.dlang.org/show_bug.cgi?id=13369

bb.temp@gmx.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bb.temp@gmx.com

--- Comment #2 from bb.temp@gmx.com ---
Hi, bearophile.

Just a word to tell you that your spam is part of the history ;)

http://forum.dlang.org/post/nlqklojvykfuuuddwzuk@forum.dlang.org

Your bullshits are almost done.

Goodbye my friend, it's hard to die...

--
December 02, 2015
https://issues.dlang.org/show_bug.cgi?id=13369

ag0aep6g@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ag0aep6g@gmail.com

--- Comment #3 from ag0aep6g@gmail.com ---
(In reply to bb.temp from comment #2)
> Hi, bearophile.
> 
> Just a word to tell you that your spam is part of the history ;)
> 
> http://forum.dlang.org/post/nlqklojvykfuuuddwzuk@forum.dlang.org
> 
> Your bullshits are almost done.
> 
> Goodbye my friend, it's hard to die...

This is inappropriate. Please don't take personal matters to issue discussions, and whatever the channel, please stay civil.

--
December 23, 2016
https://issues.dlang.org/show_bug.cgi?id=13369

Eduard Staniloiu <edi33416@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |trivial
                 CC|                            |edi33416@gmail.com

--
March 21, 2020
https://issues.dlang.org/show_bug.cgi?id=13369

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|b2.temp@gmx.com             |

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=13369

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P4

--