Changeset 73957 in vbox
- Timestamp:
- Aug 29, 2018 3:12:43 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124686
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73956 r73957 749 749 * @param a_pThat The object to insert. The array takes ownership of the object on success. 750 750 */ 751 int append( size_t a_idx,ElementType *a_pThat)751 int append(ElementType *a_pThat) 752 752 { 753 753 return insertWorker(~(size_t)0, a_pThat, false /*a_fReplace*/); … … 846 846 * @returns The first object, NULL if empty. 847 847 */ 848 ElementType *first( size_t a_idx)848 ElementType *first() 849 849 { 850 850 return at(0); … … 855 855 * @returns The first object, NULL if empty. 856 856 */ 857 ElementType const *first( size_t a_idx) const857 ElementType const *first() const 858 858 { 859 859 return at(0); … … 864 864 * @returns The last object, NULL if empty. 865 865 */ 866 ElementType *last( size_t a_idx)866 ElementType *last() 867 867 { 868 868 return at(m_cElements - 1); … … 873 873 * @returns The last object, NULL if empty. 874 874 */ 875 ElementType const *last( size_t a_idx) const875 ElementType const *last() const 876 876 { 877 877 return at(m_cElements - 1);
Note:
See TracChangeset
for help on using the changeset viewer.