doc
This commit is contained in:
@@ -309,7 +309,7 @@
|
||||
* m[2] = "two";
|
||||
* m[4] = "four";
|
||||
*
|
||||
* PIMapIterator<int, PIString> it(m);
|
||||
* auto it = m.makeIterator();
|
||||
* while (it.next()) {
|
||||
* piCout << it.key() << it.value();
|
||||
* }
|
||||
@@ -324,9 +324,9 @@
|
||||
* it.next();
|
||||
* \endcode
|
||||
*
|
||||
* Using map method:
|
||||
* Using constructor:
|
||||
* \code
|
||||
* auto it = m.makeIterator();
|
||||
* PIMapIterator<int, PIString> it(m);
|
||||
* \endcode
|
||||
*
|
||||
* Write access:
|
||||
|
||||
Reference in New Issue
Block a user