queue::generic_value (STL/CLR)

The type of an element for use with the generic interface for the container.

    typedef GValue generic_value;

Remarks

The type describes an object of type GValue that describes the stored element value for use with the generic interface for this template container class. (GValue is either value_type or value_type^ if value_type is a ref type.)

Example

// cliext_queue_generic_value.cpp 
// compile with: /clr 
#include <cliext/queue> 
 
typedef cliext::queue<wchar_t> Myqueue; 
int main() 
    { 
    Myqueue c1; 
    c1.push(L'a'); 
    c1.push(L'b'); 
    c1.push(L'c'); 
 
// display contents " a b c" 
    for each (wchar_t elem in c1.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// get interface to container 
    Myqueue::generic_container^ gc1 = %c1; 
    for each (wchar_t elem in gc1->get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// display in order using generic_value 
    for (; !gc1->empty(); gc1->pop()) 
        { 
        Myqueue::generic_value elem = gc1->front(); 
 
        System::Console::Write(" {0}", elem); 
        } 
    System::Console::WriteLine(); 
    return (0); 
    } 
 

a b c a b c a b c

Requirements

Header: <cliext/queue>

Namespace: cliext

See Also

Reference

queue (STL/CLR)

queue::generic_container (STL/CLR)

queue::value_type (STL/CLR)