mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
.reference
git-svn-id: svn://ultimatepp.org/upp/trunk@4162 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
ad54a6fa2f
commit
bb335d62bf
5 changed files with 26 additions and 17 deletions
|
|
@ -25,22 +25,23 @@ CONSOLE_APP_MAIN
|
|||
DUMP(Format("%x", 123));
|
||||
DUMP(Format("%X", 123));
|
||||
|
||||
DUMP(Format("%e", 1.23));
|
||||
DUMP(Format("%E", 1.23));
|
||||
DUMP(Format("%f", 1.23));
|
||||
DUMP(Format("%g", 1.23));
|
||||
DUMP(Format("%G", 1.23));
|
||||
|
||||
DUMP(Format("%n", 1.23));
|
||||
DUMP(Format("%n", 1.23));
|
||||
DUMP(Format("%ne", 1.23));
|
||||
DUMP(Format("%nf", 1.23e30));
|
||||
DUMP(Format("%nl", 1.23));
|
||||
DUMP(Format("%v", 1.23));
|
||||
DUMP(Format("%ve", 1.23));
|
||||
DUMP(Format("%vf", 1.23e30));
|
||||
DUMP(Format("%vl", 1.23));
|
||||
DUMP(Format("%e", 1234567.89));
|
||||
DUMP(Format("%E", 1234567.89));
|
||||
DUMP(Format("%f", 1234567.89));
|
||||
DUMP(Format("%g", 1234567.89));
|
||||
DUMP(Format("%G", 1234567.89));
|
||||
|
||||
DUMP(Format("%n", 1234567.89));
|
||||
DUMP(Format("%,n", 1234567.89));
|
||||
DUMP(Format("%ne", 1234567.89));
|
||||
DUMP(Format("%nf", 1234567.89e30));
|
||||
DUMP(Format("%nl", 1234567.89));
|
||||
DUMP(Format("%@nl", 1234567.89));
|
||||
DUMP(Format("%@,nl", 1234567.89));
|
||||
DUMP(Format("%v", 1234567.89));
|
||||
DUMP(Format("%ve", 1234567.89));
|
||||
DUMP(Format("%vf", 1234567.89e30));
|
||||
DUMP(Format("%vl", 1234567.89));
|
||||
|
||||
DUMP(Format("%[1:one;2:two;3:three;another]s", 2));
|
||||
DUMP(Format("%[1:one;2:two;3:three;another]s", 20));
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
description "Formatting Strings";
|
||||
description "Formatting Strings\377";
|
||||
|
||||
uses
|
||||
Core;
|
||||
|
|
|
|||
4
reference/Format/init
Normal file
4
reference/Format/init
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#ifndef _Format_icpp_init_stub
|
||||
#define _Format_icpp_init_stub
|
||||
#include "Core/init"
|
||||
#endif
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
description "GLCtrl widget example";
|
||||
description "GLCtrl widget example\377";
|
||||
|
||||
uses
|
||||
GLCtrl;
|
||||
|
|
|
|||
4
reference/OpenGL/init
Normal file
4
reference/OpenGL/init
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#ifndef _OpenGL_icpp_init_stub
|
||||
#define _OpenGL_icpp_init_stub
|
||||
#include "GLCtrl/init"
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue