ADC Home > Reference Library > Reference > Darwin > Miscellaneous User Space API Reference

 


stl_uninitialized.h

Includes:
<cstring>
<cstring>
<debug/debug.h>
<cstring>

Introduction

This is an internal header file, included by other library headers. You should not attempt to use it directly.



Typedefs


uninitialized_copy


template<typename _InputIterator, typename _ForwardIterator> inline _ForwardIterator uninitialized_copy(
    _InputIterator __first,
    _InputIterator __last, 
    _ForwardIterator __result) 
Discussion

@brief Copies the range [first,last) into result.


uninitialized_fill


template<typename _ForwardIterator, typename _Tp> inline void uninitialized_fill(
    _ForwardIterator __first,
    _ForwardIterator __last, 
    const _Tp& __x) 
Discussion

@brief Copies the value x into the range [first,last).


uninitialized_fill_n


template<typename _ForwardIterator, typename _Size, typename _Tp> inline void uninitialized_fill_n(
    _ForwardIterator __first,
    _Size __n,
    const _Tp& __x) 
Discussion

@brief Copies the value x into the range [first,first+n).

Last Updated: 2006-06-20