the last item
| 981 | } |
| 982 | //! the last item |
| 983 | reference back() { |
| 984 | __TBB_ASSERT( size()>0, NULL); |
| 985 | return internal_subscript( size()-1 ); |
| 986 | } |
| 987 | //! the last item const |
| 988 | const_reference back() const { |
| 989 | __TBB_ASSERT( size()>0, NULL); |
no test coverage detected