mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-02 16:22:40 -06:00
.reference
git-svn-id: svn://ultimatepp.org/upp/trunk@9814 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
7a05033a2f
commit
7f8e2a128f
1 changed files with 11 additions and 1 deletions
|
|
@ -11,8 +11,18 @@ CONSOLE_APP_MAIN
|
|||
DUMP(x.a);
|
||||
DUMP(x.b);
|
||||
DUMP(x);
|
||||
|
||||
DUMP(x.GetCount());
|
||||
DUMP(x.Get(0));
|
||||
DUMP(x.Get(1));
|
||||
DUMP(x.GetArray());
|
||||
DUMP(x.Get<0>());
|
||||
DUMP(x.Get<String>());
|
||||
|
||||
x.Set(0, "bar");
|
||||
x.Set(1, "bar");
|
||||
DUMP(x);
|
||||
ValueArray va { 22, "world" };
|
||||
x.SetArray(va);
|
||||
DUMP(x);
|
||||
|
||||
Tuple<int, String> y = MakeTuple<int, String>(13, "hello");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue