_uninitialized.h
来自「stl的源码」· C头文件 代码 · 共 444 行 · 第 1/2 页
H
444 行
/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1997 * Moscow Center for SPARC Technology * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * *//* NOTE: This is an internal header file, included by other STL headers. * You should not attempt to use it directly. */#ifndef _STLP_INTERNAL_UNINITIALIZED_H#define _STLP_INTERNAL_UNINITIALIZED_H#ifndef _STLP_INTERNAL_CSTRING# include <stl/_cstring.h>#endif#ifndef _STLP_INTERNAL_ALGOBASE_H# include <stl/_algobase.h>#endif#ifndef _STLP_INTERNAL_CONSTRUCT_H# include <stl/_construct.h>#endif_STLP_BEGIN_NAMESPACE_STLP_MOVE_TO_PRIV_NAMESPACE// uninitialized_copytemplate <class _InputIter, class _OutputIter, class _Distance>inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, _OutputIter __result, _Distance*) { _OutputIter __cur = __result; _STLP_TRY { for ( ; __first != __last; ++__first, ++__cur) _Param_Construct(&*__cur, *__first); return __cur; } _STLP_UNWIND(_STLP_STD::_Destroy_Range(__result, __cur)) _STLP_RET_AFTER_THROW(__cur)}template <class _InputIter, class _OutputIter, class _Distance>inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, _OutputIter __result, const input_iterator_tag &, _Distance* __d){ return __ucopy(__first, __last, __result, __d); }#if defined (_STLP_NONTEMPL_BASE_MATCH_BUG)template <class _InputIter, class _OutputIter, class _Distance>inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, _OutputIter __result, const forward_iterator_tag &, _Distance* __d){ return __ucopy(__first, __last, __result, __d); }template <class _InputIter, class _OutputIter, class _Distance>inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, _OutputIter __result, const bidirectional_iterator_tag &, _Distance* __d){ return __ucopy(__first, __last, __result, __d); }#endiftemplate <class _RandomAccessIter, class _OutputIter, class _Distance>inline _OutputIter __ucopy(_RandomAccessIter __first, _RandomAccessIter __last, _OutputIter __result, const random_access_iterator_tag &, _Distance*) { _OutputIter __cur = __result; _STLP_TRY { for (_Distance __n = __last - __first; __n > 0; --__n) { _Param_Construct(&*__cur, *__first); ++__first; ++__cur; } return __cur; } _STLP_UNWIND(_STLP_STD::_Destroy_Range(__result, __cur)) _STLP_RET_AFTER_THROW(__cur)}//Used internalytemplate <class _RandomAccessIter, class _OutputIter>inline _OutputIter __ucopy(_RandomAccessIter __first, _RandomAccessIter __last, _OutputIter __result){ return __ucopy(__first, __last, __result, random_access_iterator_tag(), (ptrdiff_t*)0); }inline void*__ucopy_trivial(const void* __first, const void* __last, void* __result) { //dums: this version can use memcpy (__copy_trivial can't) return (__last == __first) ? __result : ((char*)memcpy(__result, __first, ((const char*)__last - (const char*)__first))) + ((const char*)__last - (const char*)__first);}template <class _InputIter, class _OutputIter>inline _OutputIter __ucopy_ptrs(_InputIter __first, _InputIter __last, _OutputIter __result, const __false_type& /*TrivialUCopy*/){ return __ucopy(__first, __last, __result, random_access_iterator_tag(), (ptrdiff_t*)0); }template <class _InputIter, class _OutputIter>inline _OutputIter __ucopy_ptrs(_InputIter __first, _InputIter __last, _OutputIter __result, const __true_type& /*TrivialUCopy*/) { // we know they all pointers, so this cast is OK // return (_OutputIter)__copy_trivial(&(*__first), &(*__last), &(*__result)); return (_OutputIter)__ucopy_trivial(__first, __last, __result);}template <class _InputIter, class _OutputIter>inline _OutputIter __ucopy_aux(_InputIter __first, _InputIter __last, _OutputIter __result, const __true_type& /*BothPtrType*/) { return __ucopy_ptrs(__first, __last, __result, _UseTrivialUCopy(_STLP_VALUE_TYPE(__first, _InputIter), _STLP_VALUE_TYPE(__result, _OutputIter))._Answer());}template <class _InputIter, class _OutputIter>inline _OutputIter __ucopy_aux(_InputIter __first, _InputIter __last, _OutputIter __result, const __false_type& /*BothPtrType*/) { return __ucopy(__first, __last, __result, _STLP_ITERATOR_CATEGORY(__first, _InputIter), _STLP_DISTANCE_TYPE(__first, _InputIter));}_STLP_MOVE_TO_STD_NAMESPACEtemplate <class _InputIter, class _ForwardIter>inline _ForwardIteruninitialized_copy(_InputIter __first, _InputIter __last, _ForwardIter __result){ return _STLP_PRIV __ucopy_aux(__first, __last, __result, _BothPtrType< _InputIter, _ForwardIter>::_Answer()); }inline char*uninitialized_copy(const char* __first, const char* __last, char* __result){ return (char*)_STLP_PRIV __ucopy_trivial(__first, __last, __result); }# if defined (_STLP_HAS_WCHAR_T) // dwa 8/15/97inline wchar_t*uninitialized_copy(const wchar_t* __first, const wchar_t* __last, wchar_t* __result){ return (wchar_t*)_STLP_PRIV __ucopy_trivial (__first, __last, __result); }# endif// uninitialized_copy_n (not part of the C++ standard)_STLP_MOVE_TO_PRIV_NAMESPACEtemplate <class _InputIter, class _Size, class _ForwardIter>_STLP_INLINE_LOOPpair<_InputIter, _ForwardIter>__ucopy_n(_InputIter __first, _Size __count, _ForwardIter __result, const input_iterator_tag &) { _ForwardIter __cur = __result; _STLP_TRY { for ( ; __count > 0 ; --__count, ++__first, ++__cur) _Param_Construct(&*__cur, *__first); return pair<_InputIter, _ForwardIter>(__first, __cur); } _STLP_UNWIND(_STLP_STD::_Destroy_Range(__result, __cur)) _STLP_RET_AFTER_THROW((pair<_InputIter, _ForwardIter>(__first, __cur)))}# if defined (_STLP_NONTEMPL_BASE_MATCH_BUG)template <class _InputIter, class _Size, class _ForwardIterator>inline pair<_InputIter, _ForwardIterator>__ucopy_n(_InputIter __first, _Size __count, _ForwardIterator __result, const forward_iterator_tag &){ return __ucopy_n(__first, __count, __result, input_iterator_tag()); }template <class _InputIter, class _Size, class _ForwardIterator>inline pair<_InputIter, _ForwardIterator>__ucopy_n(_InputIter __first, _Size __count, _ForwardIterator __result, const bidirectional_iterator_tag &){ return __ucopy_n(__first, __count, __result, input_iterator_tag()); }# endiftemplate <class _RandomAccessIter, class _Size, class _ForwardIter>inline pair<_RandomAccessIter, _ForwardIter>__ucopy_n(_RandomAccessIter __first, _Size __count, _ForwardIter __result, const random_access_iterator_tag &) { _RandomAccessIter __last = __first + __count; return pair<_RandomAccessIter, _ForwardIter>(__last, uninitialized_copy(__first, __last, __result));}// This is used internally in <rope> , which is extension itself.template <class _InputIter, class _Size, class _ForwardIter>inline pair<_InputIter, _ForwardIter>__ucopy_n(_InputIter __first, _Size __count, _ForwardIter __result){ return _STLP_PRIV __ucopy_n(__first, __count, __result, _STLP_ITERATOR_CATEGORY(__first, _InputIter)); }#if !defined (_STLP_NO_EXTENSIONS)_STLP_MOVE_TO_STD_NAMESPACEtemplate <class _InputIter, class _Size, class _ForwardIter>inline pair<_InputIter, _ForwardIter>uninitialized_copy_n(_InputIter __first, _Size __count, _ForwardIter __result){ return _STLP_PRIV __ucopy_n(__first, __count, __result); }_STLP_MOVE_TO_PRIV_NAMESPACE#endiftemplate <class _ForwardIter, class _Tp, class _Distance>inline void __ufill(_ForwardIter __first, _ForwardIter __last, const _Tp& __x, _Distance*) { _ForwardIter __cur = __first; _STLP_TRY { for ( ; __cur != __last; ++__cur) _Param_Construct(&*__cur, __x);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?