.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@4162 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-11-11 14:12:12 +00:00
parent ad54a6fa2f
commit bb335d62bf
5 changed files with 26 additions and 17 deletions

View file

@ -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));

View file

@ -1,4 +1,4 @@
description "Formatting Strings";
description "Formatting Strings\377";
uses
Core;

4
reference/Format/init Normal file
View file

@ -0,0 +1,4 @@
#ifndef _Format_icpp_init_stub
#define _Format_icpp_init_stub
#include "Core/init"
#endif

View file

@ -1,4 +1,4 @@
description "GLCtrl widget example";
description "GLCtrl widget example\377";
uses
GLCtrl;

4
reference/OpenGL/init Normal file
View file

@ -0,0 +1,4 @@
#ifndef _OpenGL_icpp_init_stub
#define _OpenGL_icpp_init_stub
#include "GLCtrl/init"
#endif