digitalmars.D.bugs - [Issue 5970] New: format("%d", BigInt) problem
- d-bugmail puremagic.com (26/29) May 09 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (29/29) Aug 24 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (14/14) Aug 24 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (16/34) Aug 25 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (9/10) Aug 25 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (6/6) Aug 25 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5970
- d-bugmail puremagic.com (19/19) Apr 24 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5970
http://d.puremagic.com/issues/show_bug.cgi?id=5970 Summary: format("%d", BigInt) problem Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.ccI think it doesn't work with DMD 2.053beta: import std.bigint, std.string; void main() { format("%d", BigInt(1)); } It prints: std.format.FormatError: std.format Can't convert std.bigint.BigInt to string: "string toString()" not defined -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------How do I perform the equivalent of str(ackermann(4, 2)) with BigInt?format("%d", ackermann(4,2))
May 09 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970 import std.bigint, std.conv; void main() { string s = text(BigInt(1)); } In DMD 2.055beta it gives: ...\src\phobos\std\conv.d(829): Error: function std.bigint.BigInt.toString (void delegate(const(char)[]) sink, string formatString) const is not callable using argument types () ...\src\phobos\std\conv.d(829): Error: expected 2 function arguments, not 0 See also notes in bug 4122 : My suggestion is to change the signature of BigInt.toString() from this: void toString(void delegate(const (char)[]) sink, string formatString) const { To something like this: string toString(void delegate(string) sink=null, string formatString="d") const { And make it return a string filled with the decimal representation when sink is null; and to return an empty string when sink!=null. -------- Eventually the signature can even become: string toString(void delegate(string) sink=null, string formatString="d", string thousands="") const { So if thousands="_" the number gets represented as: "100_000_000_000" But this is less essential. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 24 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970 timon.gehr gmx.ch changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |timon.gehr gmx.ch alternatively, just provide another overload. bi.toString(), where bi is a BigInt should just work and return a newly allocated string that represents bi. (The current toString would actually better be called writeTo. Format string should default to null in each case.) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 24 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970 Don <clugdbug yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |clugdbug yahoo.com.auYou're right. writefln() works, but format() doesn't: import std.bigint, std.stdio; void main() { writefln("%d %x", BigInt(114), BigInt(114)); // works } A bit strange, since writefln() should really be using format(). -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------I think it doesn't work with DMD 2.053beta: import std.bigint, std.string; void main() { format("%d", BigInt(1)); } It prints: std.format.FormatError: std.format Can't convert std.bigint.BigInt to string: "string toString()" not definedHow do I perform the equivalent of str(ackermann(4, 2)) with BigInt?format("%d", ackermann(4,2))
Aug 25 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970A bit strange, since writefln() should really be using format().It is not true. std.string.format() still uses std.format.doFormat(), not formattedWrite(). I think that is old feature. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 25 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970 See also bug 6448 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 25 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5970 bearophile_hugs eml.cc changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED This works correctly: import std.bigint, std.string, std.stdio; void main() { writeln(xformat("%d", BigInt(1))); } Change discussed here: https://github.com/D-Programming-Language/phobos/pull/231 So format() is to be considered obsolete (and eventually deprecated and removed, I presume). So I close this issue. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 24 2012