4 ** All rights reserved. |
4 ** All rights reserved. |
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
6 ** |
6 ** |
7 ** This file is part of the documentation of the Qt Toolkit. |
7 ** This file is part of the documentation of the Qt Toolkit. |
8 ** |
8 ** |
9 ** $QT_BEGIN_LICENSE:LGPL$ |
9 ** $QT_BEGIN_LICENSE:FDL$ |
10 ** No Commercial Usage |
10 ** Commercial Usage |
11 ** This file contains pre-release code and may not be distributed. |
11 ** Licensees holding valid Qt Commercial licenses may use this file in |
12 ** You may use this file in accordance with the terms and conditions |
12 ** accordance with the Qt Commercial License Agreement provided with the |
13 ** contained in the Technology Preview License Agreement accompanying |
13 ** Software or, alternatively, in accordance with the terms contained in a |
14 ** this package. |
14 ** written agreement between you and Nokia. |
15 ** |
15 ** |
16 ** GNU Lesser General Public License Usage |
16 ** GNU Free Documentation License |
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
17 ** Alternatively, this file may be used under the terms of the GNU Free |
18 ** General Public License version 2.1 as published by the Free Software |
18 ** Documentation License version 1.3 as published by the Free Software |
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
19 ** Foundation and appearing in the file included in the packaging of this |
20 ** packaging of this file. Please review the following information to |
20 ** file. |
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
21 ** |
28 ** If you have questions regarding the use of this file, please contact |
22 ** If you have questions regarding the use of this file, please contact |
29 ** Nokia at qt-info@nokia.com. |
23 ** Nokia at qt-info@nokia.com. |
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
24 ** $QT_END_LICENSE$ |
39 ** |
25 ** |
40 ****************************************************************************/ |
26 ****************************************************************************/ |
41 |
27 |
42 /*! |
28 /*! |
300 |
286 |
301 If the index \a i is out of bounds, the function returns |
287 If the index \a i is out of bounds, the function returns |
302 \a defaultValue. |
288 \a defaultValue. |
303 */ |
289 */ |
304 |
290 |
|
291 /*! |
|
292 \typedef QVarLengthArray::size_type |
|
293 \since 4.7 |
|
294 |
|
295 Typedef for int. Provided for STL compatibility. |
|
296 */ |
|
297 |
|
298 /*! |
|
299 \typedef QVarLengthArray::value_type |
|
300 \since 4.7 |
|
301 |
|
302 Typedef for T. Provided for STL compatibility. |
|
303 */ |
|
304 |
|
305 /*! |
|
306 \typedef QVarLengthArray::difference_type |
|
307 \since 4.7 |
|
308 |
|
309 Typedef for ptrdiff_t. Provided for STL compatibility. |
|
310 */ |
|
311 |
|
312 /*! |
|
313 \typedef QVarLengthArray::pointer |
|
314 \since 4.7 |
|
315 |
|
316 Typedef for T *. Provided for STL compatibility. |
|
317 */ |
|
318 |
|
319 /*! |
|
320 \typedef QVarLengthArray::const_pointer |
|
321 \since 4.7 |
|
322 |
|
323 Typedef for const T *. Provided for STL compatibility. |
|
324 */ |
|
325 |
|
326 /*! |
|
327 \typedef QVarLengthArray::reference |
|
328 \since 4.7 |
|
329 |
|
330 Typedef for T &. Provided for STL compatibility. |
|
331 */ |
|
332 |
|
333 /*! |
|
334 \typedef QVarLengthArray::const_reference |
|
335 \since 4.7 |
|
336 |
|
337 Typedef for const T &. Provided for STL compatibility. |
|
338 */ |
|
339 |