Skip to end of metadata
Go to start of metadata

template<typename To , class OutputIterator >
void FB::convert_variant_list ( FB::VariantList::const_iterator  begin,
FB::VariantList::const_iterator  end,
OutputIterator  result 
) [inline]

Fills the range [result, result+(end-begin)) with the contents of the range [begin,end), converted to To.

Parameters:
begin the start of the range
end the end of the range
result Out parameter, shall be an output iterator.

Definition at line 159 of file variant_list.h.

References convert_variant_list().

00162     {
00163         while(begin != end){
00164             *result++ = (begin++)->convert_cast<To>();
00165         }
00166     }

Here is the call graph for this function:


Generated on 21 May 2013 for FireBreath by  doxygen 1.6.1
Labels
  • None