std::front_insert_iterator::operator=
From cppreference.com
                    
                                        
                    < cpp | iterator | front insert iterator
                    
                                                            
                    |   front_insert_iterator<Container>& operator=( const typename Container::value_type& value );  | 
(1) | |
|   front_insert_iterator<Container>& operator=( typename Container::value_type&& value );  | 
(2) | |
Inserts the given value value to the container.
1) Results in container->push_front(value)
2) Results in container->push_front(std::move(value))
[edit] Parameters
| value | - | the value to insert | 
[edit] Return value
*this
[edit] Example
| This section is incomplete |