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