priority_queue::to_array (STL/CLR)

Copies the controlled sequence to a new array.

    cli::array<Value>^ to_array();

Remarks

The member function returns an array containing the controlled sequence. You use it to obtain a copy of the controlled sequence in array form.

Example

// cliext_priority_queue_to_array.cpp 
// compile with: /clr 
#include <cliext/queue> 
 
typedef cliext::priority_queue<wchar_t> Mypriority_queue; 
int main() 
    { 
    Mypriority_queue c1; 
    c1.push(L'a'); 
    c1.push(L'b'); 
    c1.push(L'c'); 
 
// copy the container and modify it 
    cli::array<wchar_t>^ a1 = c1.to_array(); 
 
    c1.push(L'd'); 
    for each (wchar_t elem in c1.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// display the earlier array copy 
    for each (wchar_t elem in a1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
 d c b a
 c a b

Requirements

Header: <cliext/queue>

Namespace: cliext

See Also

Reference

priority_queue (STL/CLR)