Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #904 (closed wishlist: wontfix)

Opened 16 years ago

Last modified 16 years ago

Remove 24 arg limit on tango.io.Print.print

Reported by: baxissimo Assigned to: kris
Priority: minor Milestone: 1.0
Component: IO Version: 0.99.4 Frank
Keywords: Cc:

Description

Suggestion from Christopher Wright on the D.announce NG:

Do something like: if (_arguments.length < 24) {

// insert current code for print() here

} else {

foreach (i, arg; _arguments) {

char[] fmt = (i + 1 == _arguments.length) ? "{0}" : "{0}, "; convert(&sink, [arg], _argptr, fmt); _argptr += arg.tsize();

}

}

Change History

02/14/08 16:59:54 changed by larsivi

  • type changed from defect to wishlist.

04/18/08 05:10:26 changed by kris

  • status changed from new to assigned.
  • milestone changed from 0.99.6 to 1.0.

05/26/08 05:44:38 changed by kris

  • status changed from assigned to closed.
  • resolution set to wontfix.

This seems a bit extreme, so will close it for now