libstdc++
std::_Temporary_buffer Class Reference
Inheritance diagram for std::_Temporary_buffer:

List of all members.

Public Types

Public Member Functions

Protected Attributes


Detailed Description

This class is used in two places: stl_algo.h and ext/memory, where it is wrapped as the temporary_buffer class. See temporary_buffer docs for more notes.


Constructor & Destructor Documentation

std::_Temporary_buffer::_Temporary_buffer ( _ForwardIterator  __first,
_ForwardIterator  __last 
)

Constructs a temporary buffer of a size somewhere between zero and the size of the given range.

Definition at line 246 of file stl_tempbuf.h.

References std::get_temporary_buffer(), std::pair::first, std::pair::second, and std::return_temporary_buffer().


Member Function Documentation

iterator std::_Temporary_buffer::begin ( ) [inline]

As per Table mumble.

Definition at line 152 of file stl_tempbuf.h.

Referenced by std::stable_partition(), std::inplace_merge(), and std::stable_sort().

iterator std::_Temporary_buffer::end ( ) [inline]

As per Table mumble.

Definition at line 157 of file stl_tempbuf.h.

size_type std::_Temporary_buffer::requested_size ( ) const [inline]

Returns the size requested by the constructor; may be >size().

Definition at line 147 of file stl_tempbuf.h.

Referenced by std::stable_partition().

size_type std::_Temporary_buffer::size ( ) const [inline]

As per Table mumble.

Definition at line 142 of file stl_tempbuf.h.

Referenced by std::stable_partition(), std::inplace_merge(), and std::stable_sort().


The documentation for this class was generated from the following file: