2001-06-28 01:09:53 +08:00
|
|
|
// Bits and pieces used in algorithms -*- C++ -*-
|
|
|
|
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
// Free Software Foundation, Inc.
|
2001-06-28 01:09:53 +08:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
2005-08-17 10:28:44 +08:00
|
|
|
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
2001-06-28 01:09:53 +08:00
|
|
|
// USA.
|
|
|
|
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
|
|
// library without restriction. Specifically, if other files instantiate
|
|
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
|
|
// this file and link it with other files to produce an executable, this
|
|
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
|
|
// the GNU General Public License. This exception does not however
|
|
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
|
|
// the GNU General Public License.
|
|
|
|
|
2000-10-05 19:27:02 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1994
|
|
|
|
* Hewlett-Packard Company
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appear in all copies and
|
|
|
|
* that both that copyright notice and this permission notice appear
|
|
|
|
* in supporting documentation. Hewlett-Packard Company makes no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1996-1998
|
|
|
|
* Silicon Graphics Computer Systems, Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appear in all copies and
|
|
|
|
* that both that copyright notice and this permission notice appear
|
|
|
|
* in supporting documentation. Silicon Graphics makes no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*/
|
|
|
|
|
c_io_stdio.h: Correct grammar in comments.
2001-11-02 Phil Edwards <pme@gcc.gnu.org>
* config/io/c_io_stdio.h: Correct grammar in comments.
* docs/doxygen/Intro.3: Expand "top-level" man page.
* docs/doxygen/doxygroups.cc: New module definitions (comments).
* docs/doxygen/mainpage.doxy: Tweaks.
* docs/doxygen/run_doxygen: Update Doxygen version, massage man pages.
Add @file hooks so that headers are considered to be documented.
* include/bits/basic_ios.h, include/bits/basic_file.h,
include/bits/basic_string.h, include/bits/boost_concept_check.h,
include/bits/char_traits.h, include/bits/codecvt.h,
include/bits/concept_check.h, include/bits/cpp_type_traits.h,
include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h,
include/bits/indirect_array.h, include/bits/ios_base.h,
include/bits/locale_facets.h, include/bits/localefwd.h,
include/bits/mask_array.h, include/bits/pthread_allocimpl.h,
include/bits/slice.h, include/bits/slice_array.h,
include/bits/std_algorithm.h, include/bits/std_bitset.h,
include/bits/std_complex.h, include/bits/std_deque.h,
include/bits/std_fstream.h, include/bits/std_functional.h,
include/bits/std_iomanip.h, include/bits/std_ios.h,
include/bits/std_iosfwd.h, include/bits/std_iostream.h,
include/bits/std_istream.h, include/bits/std_iterator.h,
include/bits/std_limits.h, include/bits/std_list.h,
include/bits/std_locale.h, include/bits/std_map.h,
include/bits/std_memory.h, include/bits/std_numeric.h,
include/bits/std_ostream.h, include/bits/std_queue.h,
include/bits/std_set.h, include/bits/std_sstream.h,
include/bits/std_stack.h, include/bits/std_streambuf.h,
include/bits/std_string.h, include/bits/std_utility.h,
include/bits/std_valarray.h, include/bits/std_vector.h,
include/bits/stl_algo.h, include/bits/stl_alloc.h,
include/bits/stl_bvector.h, include/bits/stl_construct.h,
include/bits/stl_deque.h, include/bits/stl_heap.h,
include/bits/stl_iterator.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_iterator_base_types.h, include/bits/stl_list.h,
include/bits/stl_map.h, include/bits/stl_multimap.h,
include/bits/stl_multiset.h, include/bits/stl_numeric.h,
include/bits/stl_pair.h, include/bits/stl_pthread_alloc.h,
include/bits/stl_queue.h, include/bits/stl_raw_storage_iter.h,
include/bits/stl_relops.h, include/bits/stl_set.h,
include/bits/stl_stack.h, include/bits/stl_tempbuf.h,
include/bits/stl_threads.h, include/bits/stl_tree.h,
include/bits/stl_uninitialized.h, include/bits/stl_vector.h,
include/bits/stream_iterator.h, include/bits/streambuf_iterator.h,
include/bits/stringfwd.h, include/bits/type_traits.h,
include/bits/valarray_array.h, include/bits/valarray_meta.h:
Add hooks, tweak comments only.
* include/bits/stl_algobase.h (swap, min, iter_swap): Also
document these functions.
* include/bits/stl_function.h: Tweak link comments.
From-SVN: r46717
2001-11-03 01:38:11 +08:00
|
|
|
/** @file stl_algobase.h
|
|
|
|
* This is an internal header file, included by other library headers.
|
|
|
|
* You should not attempt to use it directly.
|
2000-10-05 19:27:02 +08:00
|
|
|
*/
|
|
|
|
|
2003-07-05 12:05:45 +08:00
|
|
|
#ifndef _ALGOBASE_H
|
|
|
|
#define _ALGOBASE_H 1
|
2000-10-05 19:27:02 +08:00
|
|
|
|
2001-02-21 04:20:48 +08:00
|
|
|
#include <bits/c++config.h>
|
Makefile.am (std_headers): Remove cXXX from list.
2002-01-04 Benjamin Kosnik <bkoz@redhat.com>
* include/Makefile.am (std_headers): Remove cXXX from list.
(c_base_srcdir): No bits subdirectory.
(c_base_builddir): Same.
(c_base_headers): Adjust names, add ciso646.
(bits_headers): Remove std_xxx.h headers.
* include/Makefile.in: Regenerate.
* include/ext/iterator: Adjust includes.
* include/ext/ropeimpl.h: Same.
* include/ext/stl_hash_fun.h: Same.
* include/ext/algorithm: Same.
* include/backward/bvector.h: Adjust includes.
* include/backward/vector.h: Same.
* include/backward/strstream: Same.
* include/backward/streambuf.h: Same.
* include/backward/stack.h: Same.
* include/backward/set.h: Same.
* include/backward/queue.h: Same.
* include/backward/multiset.h: Same.
* include/backward/multimap.h: Same.
* include/backward/map.h: Same.
* include/backward/list.h: Same.
* include/backward/iterator.h: Same.
* include/backward/iostream.h: Same.
* include/backward/iomanip.h: Same.
* include/backward/fstream.h: Same.
* include/backward/deque.h: Same.
* include/backward/complex.h: Same.
* include/bits/std_algorithm.h: Move to...
* include/std/algorithm: ...here.
* include/bits/std_iosfwd.h, std_locale.h, std_stack.h,
std_bitset.h, std_ios.h, std_map.h, std_stdexcept.h,
std_complex.h, std_iostream.h, std_memory.h, std_streambuf.h,
std_deque.h, std_istream.h, std_numeric.h, std_string.h,
std_fstream.h, std_ostream.h, std_utility.h, std_iterator.h,
std_queue.h, std_valarray.h, std_functional.h, std_limits.h,
std_set.h, std_vector.h, std_iomanip.h, std_list.h, std_sstream.h:
Same.
* include/c_std/bits/std_cassert.h: Move to...
* include/c_std/cassert: Here.
* include/c_std/std_cctype.h, std_cerrno.h, std_cfloat.h,
std_climits.h, std_clocale.h, std_cmath.h, std_csetjmp.h,
std_csignal.h, std_cstdarg.h, std_cstddef.h, std_cstdio.h,
std_cstdlib.h, std_cstring.h, std_ctime.h, std_cwchar.h,
std_cwctype.h: Same.
* include/c_std/cmath: Adjust cmath.tcc include.
* include/c_std/cstdlib: Adjust includes.
* include/c_std/cwchar: Same.
* include/c_std/ctime: Same.
* include/c_std/cstring: Same.
* include/c_std/cstdio: Same.
* include/c_std/bits: Remove directory.
* include/c/bits/std_cassert.h: Move to...
* include/c/cassert: Here.
* include/c/std_cctype.h, std_cerrno.h, std_cfloat.h,
std_climits.h, std_clocale.h, std_cmath.h, std_csetjmp.h,
std_csignal.h, std_cstdarg.h, std_cstddef.h, std_cstdio.h,
std_cstdlib.h, std_cstring.h, std_ctime.h, std_cwchar.h,
std_cwctype.h: Same.
* include/c/bits: Remove directory.
* include/std/cwctype: Remove.
* include/std/cwchar: Remove.
* include/std/ctime: Remove.
* include/std/cstring: Remove.
* include/std/cstdlib: Remove.
* include/std/cstdio: Remove.
* include/std/cstddef: Remove.
* include/std/cstdarg: Remove.
* include/std/csignal: Remove.
* include/std/csetjmp: Remove.
* include/std/cmath: Remove.
* include/std/clocale: Remove.
* include/std/climits: Remove.
* include/std/ciso646: Remove.
* include/std/cfloat: Remove.
* include/std/cerrno: Remove.
* include/std/cctype: Remove.
* include/std/cassert: Remove.
* include/bits/fpos.h: Adjust includes, removing <bits/std_xxx.h>
files and subsituting <.xxx>
* include/bits/valarray_array.h: Same.
* include/bits/stl_uninitialized.h: Same.
* include/bits/stl_alloc.h: Same.
* include/bits/stl_algobase.h: Same.
* include/bits/sstream.tcc: Same.
* include/bits/pthread_allocimpl.h: Same.
* include/bits/ostream.tcc: Same.
* include/bits/localefwd.h: Same.
* include/bits/locale_facets.tcc: Same.
* include/bits/locale_facets.h: Same.
* include/bits/istream.tcc: Same.
* include/bits/char_traits.h: Same.
* include/bits/boost_concept_check.h: Same.
* include/bits/basic_file.h: Same.
* include/std/bitset: Same.
* include/std/complex: Same.
* include/std/fstream: Same.
* include/std/functional: Same.
* include/std/ios: Same.
* include/std/iostream: Same.
* include/std/ostream: Same.
* include/std/sstream: Same.
* include/std/streambuf: Same.
* include/std/string: Same.
* include/std/iterator: Same.
* include/std/valarray: Same.
* src/ios.cc: Adjust includes.
* src/valarray-inst.cc: Same.
* src/string-inst.cc: Same.
* src/stl-inst.cc: Same.
* src/stdexcept.cc: Same.
* src/misc-inst.cc: Same.
* src/localename.cc: Same.
* src/locale-inst.cc: Same.
* src/locale.cc: Same.
* src/limits.cc: Same.
* src/concept-inst.cc: Same.
* src/complex_io.cc: Same.
* src/codecvt.cc: Same.
* src/bitset.cc: Same.
* src/cmath.cc: Same.
From-SVN: r48544
2002-01-05 05:27:36 +08:00
|
|
|
#include <cstring>
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
#include <cwchar>
|
Makefile.am (std_headers): Remove cXXX from list.
2002-01-04 Benjamin Kosnik <bkoz@redhat.com>
* include/Makefile.am (std_headers): Remove cXXX from list.
(c_base_srcdir): No bits subdirectory.
(c_base_builddir): Same.
(c_base_headers): Adjust names, add ciso646.
(bits_headers): Remove std_xxx.h headers.
* include/Makefile.in: Regenerate.
* include/ext/iterator: Adjust includes.
* include/ext/ropeimpl.h: Same.
* include/ext/stl_hash_fun.h: Same.
* include/ext/algorithm: Same.
* include/backward/bvector.h: Adjust includes.
* include/backward/vector.h: Same.
* include/backward/strstream: Same.
* include/backward/streambuf.h: Same.
* include/backward/stack.h: Same.
* include/backward/set.h: Same.
* include/backward/queue.h: Same.
* include/backward/multiset.h: Same.
* include/backward/multimap.h: Same.
* include/backward/map.h: Same.
* include/backward/list.h: Same.
* include/backward/iterator.h: Same.
* include/backward/iostream.h: Same.
* include/backward/iomanip.h: Same.
* include/backward/fstream.h: Same.
* include/backward/deque.h: Same.
* include/backward/complex.h: Same.
* include/bits/std_algorithm.h: Move to...
* include/std/algorithm: ...here.
* include/bits/std_iosfwd.h, std_locale.h, std_stack.h,
std_bitset.h, std_ios.h, std_map.h, std_stdexcept.h,
std_complex.h, std_iostream.h, std_memory.h, std_streambuf.h,
std_deque.h, std_istream.h, std_numeric.h, std_string.h,
std_fstream.h, std_ostream.h, std_utility.h, std_iterator.h,
std_queue.h, std_valarray.h, std_functional.h, std_limits.h,
std_set.h, std_vector.h, std_iomanip.h, std_list.h, std_sstream.h:
Same.
* include/c_std/bits/std_cassert.h: Move to...
* include/c_std/cassert: Here.
* include/c_std/std_cctype.h, std_cerrno.h, std_cfloat.h,
std_climits.h, std_clocale.h, std_cmath.h, std_csetjmp.h,
std_csignal.h, std_cstdarg.h, std_cstddef.h, std_cstdio.h,
std_cstdlib.h, std_cstring.h, std_ctime.h, std_cwchar.h,
std_cwctype.h: Same.
* include/c_std/cmath: Adjust cmath.tcc include.
* include/c_std/cstdlib: Adjust includes.
* include/c_std/cwchar: Same.
* include/c_std/ctime: Same.
* include/c_std/cstring: Same.
* include/c_std/cstdio: Same.
* include/c_std/bits: Remove directory.
* include/c/bits/std_cassert.h: Move to...
* include/c/cassert: Here.
* include/c/std_cctype.h, std_cerrno.h, std_cfloat.h,
std_climits.h, std_clocale.h, std_cmath.h, std_csetjmp.h,
std_csignal.h, std_cstdarg.h, std_cstddef.h, std_cstdio.h,
std_cstdlib.h, std_cstring.h, std_ctime.h, std_cwchar.h,
std_cwctype.h: Same.
* include/c/bits: Remove directory.
* include/std/cwctype: Remove.
* include/std/cwchar: Remove.
* include/std/ctime: Remove.
* include/std/cstring: Remove.
* include/std/cstdlib: Remove.
* include/std/cstdio: Remove.
* include/std/cstddef: Remove.
* include/std/cstdarg: Remove.
* include/std/csignal: Remove.
* include/std/csetjmp: Remove.
* include/std/cmath: Remove.
* include/std/clocale: Remove.
* include/std/climits: Remove.
* include/std/ciso646: Remove.
* include/std/cfloat: Remove.
* include/std/cerrno: Remove.
* include/std/cctype: Remove.
* include/std/cassert: Remove.
* include/bits/fpos.h: Adjust includes, removing <bits/std_xxx.h>
files and subsituting <.xxx>
* include/bits/valarray_array.h: Same.
* include/bits/stl_uninitialized.h: Same.
* include/bits/stl_alloc.h: Same.
* include/bits/stl_algobase.h: Same.
* include/bits/sstream.tcc: Same.
* include/bits/pthread_allocimpl.h: Same.
* include/bits/ostream.tcc: Same.
* include/bits/localefwd.h: Same.
* include/bits/locale_facets.tcc: Same.
* include/bits/locale_facets.h: Same.
* include/bits/istream.tcc: Same.
* include/bits/char_traits.h: Same.
* include/bits/boost_concept_check.h: Same.
* include/bits/basic_file.h: Same.
* include/std/bitset: Same.
* include/std/complex: Same.
* include/std/fstream: Same.
* include/std/functional: Same.
* include/std/ios: Same.
* include/std/iostream: Same.
* include/std/ostream: Same.
* include/std/sstream: Same.
* include/std/streambuf: Same.
* include/std/string: Same.
* include/std/iterator: Same.
* include/std/valarray: Same.
* src/ios.cc: Adjust includes.
* src/valarray-inst.cc: Same.
* src/string-inst.cc: Same.
* src/stl-inst.cc: Same.
* src/stdexcept.cc: Same.
* src/misc-inst.cc: Same.
* src/localename.cc: Same.
* src/locale-inst.cc: Same.
* src/locale.cc: Same.
* src/limits.cc: Same.
* src/concept-inst.cc: Same.
* src/complex_io.cc: Same.
* src/codecvt.cc: Same.
* src/bitset.cc: Same.
* src/cmath.cc: Same.
From-SVN: r48544
2002-01-05 05:27:36 +08:00
|
|
|
#include <cstddef>
|
2007-03-03 18:29:14 +08:00
|
|
|
#include <bits/functexcept.h>
|
2000-10-05 19:27:02 +08:00
|
|
|
#include <bits/stl_pair.h>
|
2004-06-30 17:20:18 +08:00
|
|
|
#include <bits/cpp_type_traits.h>
|
2006-09-18 21:30:56 +08:00
|
|
|
#include <ext/type_traits.h>
|
numeric_traits.h: Do not include <limits>.
2007-04-13 Paolo Carlini <pcarlini@suse.de>
* include/ext/numeric_traits.h: Do not include <limits>.
(__numeric_traits_integer::__is_signed, __digits): Add.
(__numeric_traits_floating::__digits10, __max_exponent10): Add.
* src/istream.cc (ignore<char>(streamsize, int_type), operator>>
(basic_istream<char>&, char*), ignore<wchar_t>(streamsize,
int_type)): Use the latter.
* src/compatibility.cc (ignore<char>(streamsize),
ignore<wchar_t>(streamsize)): Likewise.
* include/ext/vstring_util.h (__vstring_utility<>::_S_compare):
Likewise.
* include/bits/stl_memory.h (__get_temporary_buffer): Likewise.
* include/bits/stl_algobase.h (lexicographical_compare(const char*,
const char*, const char*, const char*)): Likewise.
* include/bits/locale_facets.tcc (num_get<>::_M_extract_int(_InIter,
_InIter, ios_base&, ios_base::iostate&, _ValueT&),
num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT),
num_put<>::_M_insert_float(_OutIter, ios_base&, _CharT, char,
_ValueT), collate<>::do_hash(const _CharT*, const _CharT*)): Likewise.
* include/bits/basic_string.h (basic_string<>::_S_compare): Likewise.
* include/bits/istream.tcc (operator>>(short&), operator>>(int&),
ignore(streamsize), ignore(streamsize, int_type), operator>>
(basic_istream<>&, _CharT*)): Likewise.
* include/bits/stl_bvector.h (vector<bool>::max_size): Likewise.
* include/tr1/functional_hash.h (struct hash<long double>): Likewise.
* include/std/istream: Do not include <limits>.
* include/tr1/cmath: Include <limits>.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/char/13.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/12.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/13.cc:
Likewise.
* testsuite/27_io/ios_base/storage/2.cc: Likewise.
* include/tr1/hashtable: Do not include the whole <iterator>.
From-SVN: r123779
2007-04-13 18:54:37 +08:00
|
|
|
#include <ext/numeric_traits.h>
|
2001-04-03 08:26:58 +08:00
|
|
|
#include <bits/stl_iterator_base_types.h>
|
|
|
|
#include <bits/stl_iterator_base_funcs.h>
|
2000-10-05 19:27:02 +08:00
|
|
|
#include <bits/stl_iterator.h>
|
2001-04-03 08:26:58 +08:00
|
|
|
#include <bits/concept_check.h>
|
2003-11-12 04:09:16 +08:00
|
|
|
#include <debug/debug.h>
|
2000-10-05 19:27:02 +08:00
|
|
|
|
2005-12-19 08:56:05 +08:00
|
|
|
_GLIBCXX_BEGIN_NAMESPACE(std)
|
2004-10-05 18:28:17 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Swaps two values.
|
|
|
|
* @param a A thing of arbitrary type.
|
|
|
|
* @param b Another thing of arbitrary type.
|
|
|
|
* @return Nothing.
|
|
|
|
*
|
|
|
|
* This is the simple classic generic implementation. It will work on
|
|
|
|
* any type which has a copy constructor and an assignment operator.
|
|
|
|
*/
|
|
|
|
template<typename _Tp>
|
|
|
|
inline void
|
|
|
|
swap(_Tp& __a, _Tp& __b)
|
|
|
|
{
|
|
|
|
// concept requirements
|
|
|
|
__glibcxx_function_requires(_SGIAssignableConcept<_Tp>)
|
|
|
|
|
2005-05-20 16:58:23 +08:00
|
|
|
_Tp __tmp = __a;
|
2004-10-05 18:28:17 +08:00
|
|
|
__a = __b;
|
|
|
|
__b = __tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// See http://gcc.gnu.org/ml/libstdc++/2004-08/msg00167.html: in a
|
|
|
|
// nutshell, we are partially implementing the resolution of DR 187,
|
|
|
|
// when it's safe, i.e., the value_types are equal.
|
|
|
|
template<bool _BoolType>
|
|
|
|
struct __iter_swap
|
|
|
|
{
|
|
|
|
template<typename _ForwardIterator1, typename _ForwardIterator2>
|
|
|
|
static void
|
|
|
|
iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
|
|
|
|
{
|
|
|
|
typedef typename iterator_traits<_ForwardIterator1>::value_type
|
|
|
|
_ValueType1;
|
2005-05-20 16:58:23 +08:00
|
|
|
_ValueType1 __tmp = *__a;
|
2004-10-05 18:28:17 +08:00
|
|
|
*__a = *__b;
|
|
|
|
*__b = __tmp;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct __iter_swap<true>
|
|
|
|
{
|
|
|
|
template<typename _ForwardIterator1, typename _ForwardIterator2>
|
|
|
|
static void
|
|
|
|
iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
|
|
|
|
{
|
|
|
|
swap(*__a, *__b);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
c_io_stdio.h: Correct grammar in comments.
2001-11-02 Phil Edwards <pme@gcc.gnu.org>
* config/io/c_io_stdio.h: Correct grammar in comments.
* docs/doxygen/Intro.3: Expand "top-level" man page.
* docs/doxygen/doxygroups.cc: New module definitions (comments).
* docs/doxygen/mainpage.doxy: Tweaks.
* docs/doxygen/run_doxygen: Update Doxygen version, massage man pages.
Add @file hooks so that headers are considered to be documented.
* include/bits/basic_ios.h, include/bits/basic_file.h,
include/bits/basic_string.h, include/bits/boost_concept_check.h,
include/bits/char_traits.h, include/bits/codecvt.h,
include/bits/concept_check.h, include/bits/cpp_type_traits.h,
include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h,
include/bits/indirect_array.h, include/bits/ios_base.h,
include/bits/locale_facets.h, include/bits/localefwd.h,
include/bits/mask_array.h, include/bits/pthread_allocimpl.h,
include/bits/slice.h, include/bits/slice_array.h,
include/bits/std_algorithm.h, include/bits/std_bitset.h,
include/bits/std_complex.h, include/bits/std_deque.h,
include/bits/std_fstream.h, include/bits/std_functional.h,
include/bits/std_iomanip.h, include/bits/std_ios.h,
include/bits/std_iosfwd.h, include/bits/std_iostream.h,
include/bits/std_istream.h, include/bits/std_iterator.h,
include/bits/std_limits.h, include/bits/std_list.h,
include/bits/std_locale.h, include/bits/std_map.h,
include/bits/std_memory.h, include/bits/std_numeric.h,
include/bits/std_ostream.h, include/bits/std_queue.h,
include/bits/std_set.h, include/bits/std_sstream.h,
include/bits/std_stack.h, include/bits/std_streambuf.h,
include/bits/std_string.h, include/bits/std_utility.h,
include/bits/std_valarray.h, include/bits/std_vector.h,
include/bits/stl_algo.h, include/bits/stl_alloc.h,
include/bits/stl_bvector.h, include/bits/stl_construct.h,
include/bits/stl_deque.h, include/bits/stl_heap.h,
include/bits/stl_iterator.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_iterator_base_types.h, include/bits/stl_list.h,
include/bits/stl_map.h, include/bits/stl_multimap.h,
include/bits/stl_multiset.h, include/bits/stl_numeric.h,
include/bits/stl_pair.h, include/bits/stl_pthread_alloc.h,
include/bits/stl_queue.h, include/bits/stl_raw_storage_iter.h,
include/bits/stl_relops.h, include/bits/stl_set.h,
include/bits/stl_stack.h, include/bits/stl_tempbuf.h,
include/bits/stl_threads.h, include/bits/stl_tree.h,
include/bits/stl_uninitialized.h, include/bits/stl_vector.h,
include/bits/stream_iterator.h, include/bits/streambuf_iterator.h,
include/bits/stringfwd.h, include/bits/type_traits.h,
include/bits/valarray_array.h, include/bits/valarray_meta.h:
Add hooks, tweak comments only.
* include/bits/stl_algobase.h (swap, min, iter_swap): Also
document these functions.
* include/bits/stl_function.h: Tweak link comments.
From-SVN: r46717
2001-11-03 01:38:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Swaps the contents of two iterators.
|
|
|
|
* @param a An iterator.
|
|
|
|
* @param b Another iterator.
|
|
|
|
* @return Nothing.
|
|
|
|
*
|
|
|
|
* This function swaps the values pointed to by two iterators, not the
|
|
|
|
* iterators themselves.
|
|
|
|
*/
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _ForwardIterator1, typename _ForwardIterator2>
|
2001-07-19 01:09:02 +08:00
|
|
|
inline void
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-02-01 05:37:11 +08:00
|
|
|
typedef typename iterator_traits<_ForwardIterator1>::value_type
|
|
|
|
_ValueType1;
|
|
|
|
typedef typename iterator_traits<_ForwardIterator2>::value_type
|
|
|
|
_ValueType2;
|
2001-07-19 01:09:02 +08:00
|
|
|
|
|
|
|
// concept requirements
|
2004-02-01 05:37:11 +08:00
|
|
|
__glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
|
|
|
|
_ForwardIterator1>)
|
|
|
|
__glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
|
|
|
|
_ForwardIterator2>)
|
|
|
|
__glibcxx_function_requires(_ConvertibleConcept<_ValueType1,
|
|
|
|
_ValueType2>)
|
|
|
|
__glibcxx_function_requires(_ConvertibleConcept<_ValueType2,
|
|
|
|
_ValueType1>)
|
2005-03-22 06:16:15 +08:00
|
|
|
|
|
|
|
typedef typename iterator_traits<_ForwardIterator1>::reference
|
|
|
|
_ReferenceType1;
|
|
|
|
typedef typename iterator_traits<_ForwardIterator2>::reference
|
|
|
|
_ReferenceType2;
|
|
|
|
std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value &&
|
|
|
|
__are_same<_ValueType1 &, _ReferenceType1>::__value &&
|
|
|
|
__are_same<_ValueType2 &, _ReferenceType2>::__value>::
|
2004-10-05 18:28:17 +08:00
|
|
|
iter_swap(__a, __b);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2007-03-12 21:59:50 +08:00
|
|
|
/**
|
|
|
|
* @brief Swap the elements of two sequences.
|
|
|
|
* @param first1 A forward iterator.
|
|
|
|
* @param last1 A forward iterator.
|
|
|
|
* @param first2 A forward iterator.
|
|
|
|
* @return An iterator equal to @p first2+(last1-first1).
|
|
|
|
*
|
|
|
|
* Swaps each element in the range @p [first1,last1) with the
|
|
|
|
* corresponding element in the range @p [first2,(last1-first1)).
|
|
|
|
* The ranges must not overlap.
|
|
|
|
*/
|
|
|
|
template<typename _ForwardIterator1, typename _ForwardIterator2>
|
|
|
|
_ForwardIterator2
|
|
|
|
swap_ranges(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
|
|
|
|
_ForwardIterator2 __first2)
|
|
|
|
{
|
|
|
|
// concept requirements
|
|
|
|
__glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
|
|
|
|
_ForwardIterator1>)
|
|
|
|
__glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
|
|
|
|
_ForwardIterator2>)
|
|
|
|
__glibcxx_function_requires(_ConvertibleConcept<
|
|
|
|
typename iterator_traits<_ForwardIterator1>::value_type,
|
|
|
|
typename iterator_traits<_ForwardIterator2>::value_type>)
|
|
|
|
__glibcxx_function_requires(_ConvertibleConcept<
|
|
|
|
typename iterator_traits<_ForwardIterator2>::value_type,
|
|
|
|
typename iterator_traits<_ForwardIterator1>::value_type>)
|
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
|
|
|
|
|
|
|
for (; __first1 != __last1; ++__first1, ++__first2)
|
|
|
|
std::iter_swap(__first1, __first2);
|
|
|
|
return __first2;
|
|
|
|
}
|
|
|
|
|
c_io_stdio.h: Correct grammar in comments.
2001-11-02 Phil Edwards <pme@gcc.gnu.org>
* config/io/c_io_stdio.h: Correct grammar in comments.
* docs/doxygen/Intro.3: Expand "top-level" man page.
* docs/doxygen/doxygroups.cc: New module definitions (comments).
* docs/doxygen/mainpage.doxy: Tweaks.
* docs/doxygen/run_doxygen: Update Doxygen version, massage man pages.
Add @file hooks so that headers are considered to be documented.
* include/bits/basic_ios.h, include/bits/basic_file.h,
include/bits/basic_string.h, include/bits/boost_concept_check.h,
include/bits/char_traits.h, include/bits/codecvt.h,
include/bits/concept_check.h, include/bits/cpp_type_traits.h,
include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h,
include/bits/indirect_array.h, include/bits/ios_base.h,
include/bits/locale_facets.h, include/bits/localefwd.h,
include/bits/mask_array.h, include/bits/pthread_allocimpl.h,
include/bits/slice.h, include/bits/slice_array.h,
include/bits/std_algorithm.h, include/bits/std_bitset.h,
include/bits/std_complex.h, include/bits/std_deque.h,
include/bits/std_fstream.h, include/bits/std_functional.h,
include/bits/std_iomanip.h, include/bits/std_ios.h,
include/bits/std_iosfwd.h, include/bits/std_iostream.h,
include/bits/std_istream.h, include/bits/std_iterator.h,
include/bits/std_limits.h, include/bits/std_list.h,
include/bits/std_locale.h, include/bits/std_map.h,
include/bits/std_memory.h, include/bits/std_numeric.h,
include/bits/std_ostream.h, include/bits/std_queue.h,
include/bits/std_set.h, include/bits/std_sstream.h,
include/bits/std_stack.h, include/bits/std_streambuf.h,
include/bits/std_string.h, include/bits/std_utility.h,
include/bits/std_valarray.h, include/bits/std_vector.h,
include/bits/stl_algo.h, include/bits/stl_alloc.h,
include/bits/stl_bvector.h, include/bits/stl_construct.h,
include/bits/stl_deque.h, include/bits/stl_heap.h,
include/bits/stl_iterator.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_iterator_base_types.h, include/bits/stl_list.h,
include/bits/stl_map.h, include/bits/stl_multimap.h,
include/bits/stl_multiset.h, include/bits/stl_numeric.h,
include/bits/stl_pair.h, include/bits/stl_pthread_alloc.h,
include/bits/stl_queue.h, include/bits/stl_raw_storage_iter.h,
include/bits/stl_relops.h, include/bits/stl_set.h,
include/bits/stl_stack.h, include/bits/stl_tempbuf.h,
include/bits/stl_threads.h, include/bits/stl_tree.h,
include/bits/stl_uninitialized.h, include/bits/stl_vector.h,
include/bits/stream_iterator.h, include/bits/streambuf_iterator.h,
include/bits/stringfwd.h, include/bits/type_traits.h,
include/bits/valarray_array.h, include/bits/valarray_meta.h:
Add hooks, tweak comments only.
* include/bits/stl_algobase.h (swap, min, iter_swap): Also
document these functions.
* include/bits/stl_function.h: Tweak link comments.
From-SVN: r46717
2001-11-03 01:38:11 +08:00
|
|
|
/**
|
|
|
|
* @brief This does what you think it does.
|
|
|
|
* @param a A thing of arbitrary type.
|
|
|
|
* @param b Another thing of arbitrary type.
|
|
|
|
* @return The lesser of the parameters.
|
|
|
|
*
|
|
|
|
* This is the simple classic generic implementation. It will work on
|
|
|
|
* temporary expressions, since they are only evaluated once, unlike a
|
|
|
|
* preprocessor macro.
|
|
|
|
*/
|
2001-07-19 01:09:02 +08:00
|
|
|
template<typename _Tp>
|
|
|
|
inline const _Tp&
|
|
|
|
min(const _Tp& __a, const _Tp& __b)
|
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_LessThanComparableConcept<_Tp>)
|
2001-07-19 01:09:02 +08:00
|
|
|
//return __b < __a ? __b : __a;
|
2004-02-01 05:37:11 +08:00
|
|
|
if (__b < __a)
|
|
|
|
return __b;
|
|
|
|
return __a;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This does what you think it does.
|
|
|
|
* @param a A thing of arbitrary type.
|
|
|
|
* @param b Another thing of arbitrary type.
|
|
|
|
* @return The greater of the parameters.
|
|
|
|
*
|
|
|
|
* This is the simple classic generic implementation. It will work on
|
|
|
|
* temporary expressions, since they are only evaluated once, unlike a
|
|
|
|
* preprocessor macro.
|
|
|
|
*/
|
2001-07-19 01:09:02 +08:00
|
|
|
template<typename _Tp>
|
|
|
|
inline const _Tp&
|
2004-02-08 12:46:42 +08:00
|
|
|
max(const _Tp& __a, const _Tp& __b)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_LessThanComparableConcept<_Tp>)
|
2001-07-19 01:09:02 +08:00
|
|
|
//return __a < __b ? __b : __a;
|
2004-02-01 05:37:11 +08:00
|
|
|
if (__a < __b)
|
|
|
|
return __b;
|
|
|
|
return __a;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This does what you think it does.
|
|
|
|
* @param a A thing of arbitrary type.
|
|
|
|
* @param b Another thing of arbitrary type.
|
|
|
|
* @param comp A @link s20_3_3_comparisons comparison functor@endlink.
|
|
|
|
* @return The lesser of the parameters.
|
|
|
|
*
|
|
|
|
* This will work on temporary expressions, since they are only evaluated
|
|
|
|
* once, unlike a preprocessor macro.
|
|
|
|
*/
|
2001-07-19 01:09:02 +08:00
|
|
|
template<typename _Tp, typename _Compare>
|
|
|
|
inline const _Tp&
|
|
|
|
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
|
|
|
|
{
|
|
|
|
//return __comp(__b, __a) ? __b : __a;
|
2004-02-01 05:37:11 +08:00
|
|
|
if (__comp(__b, __a))
|
|
|
|
return __b;
|
|
|
|
return __a;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This does what you think it does.
|
|
|
|
* @param a A thing of arbitrary type.
|
|
|
|
* @param b Another thing of arbitrary type.
|
|
|
|
* @param comp A @link s20_3_3_comparisons comparison functor@endlink.
|
|
|
|
* @return The greater of the parameters.
|
|
|
|
*
|
|
|
|
* This will work on temporary expressions, since they are only evaluated
|
|
|
|
* once, unlike a preprocessor macro.
|
|
|
|
*/
|
2001-07-19 01:09:02 +08:00
|
|
|
template<typename _Tp, typename _Compare>
|
|
|
|
inline const _Tp&
|
|
|
|
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
|
|
|
|
{
|
|
|
|
//return __comp(__a, __b) ? __b : __a;
|
2004-02-01 05:37:11 +08:00
|
|
|
if (__comp(__a, __b))
|
|
|
|
return __b;
|
|
|
|
return __a;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
// All of these auxiliary structs serve two purposes. (1) Replace
|
2001-07-19 01:09:02 +08:00
|
|
|
// calls to copy with memmove whenever possible. (Memmove, not memcpy,
|
|
|
|
// because the input and output ranges are permitted to overlap.)
|
|
|
|
// (2) If we're using random access iterators, then write the loop as
|
|
|
|
// a for loop with an explicit count.
|
|
|
|
|
2004-07-02 01:53:21 +08:00
|
|
|
template<bool, typename>
|
|
|
|
struct __copy
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 01:53:21 +08:00
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
|
|
|
copy(_II __first, _II __last, _OI __result)
|
|
|
|
{
|
|
|
|
for (; __first != __last; ++__result, ++__first)
|
|
|
|
*__result = *__first;
|
|
|
|
return __result;
|
|
|
|
}
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 01:53:21 +08:00
|
|
|
template<bool _BoolType>
|
|
|
|
struct __copy<_BoolType, random_access_iterator_tag>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 01:53:21 +08:00
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
|
|
|
copy(_II __first, _II __last, _OI __result)
|
|
|
|
{
|
|
|
|
typedef typename iterator_traits<_II>::difference_type _Distance;
|
|
|
|
for(_Distance __n = __last - __first; __n > 0; --__n)
|
|
|
|
{
|
|
|
|
*__result = *__first;
|
|
|
|
++__first;
|
|
|
|
++__result;
|
|
|
|
}
|
|
|
|
return __result;
|
2003-06-06 08:19:17 +08:00
|
|
|
}
|
2004-07-02 01:53:21 +08:00
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 01:53:21 +08:00
|
|
|
template<>
|
|
|
|
struct __copy<true, random_access_iterator_tag>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 01:53:21 +08:00
|
|
|
template<typename _Tp>
|
|
|
|
static _Tp*
|
|
|
|
copy(const _Tp* __first, const _Tp* __last, _Tp* __result)
|
|
|
|
{
|
|
|
|
std::memmove(__result, __first, sizeof(_Tp) * (__last - __first));
|
|
|
|
return __result + (__last - __first);
|
|
|
|
}
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 01:53:21 +08:00
|
|
|
template<typename _II, typename _OI>
|
|
|
|
inline _OI
|
|
|
|
__copy_aux(_II __first, _II __last, _OI __result)
|
|
|
|
{
|
|
|
|
typedef typename iterator_traits<_II>::value_type _ValueTypeI;
|
|
|
|
typedef typename iterator_traits<_OI>::value_type _ValueTypeO;
|
|
|
|
typedef typename iterator_traits<_II>::iterator_category _Category;
|
stl_algobase.h (__copy_aux(_II, _II, _OI), [...]): Use __is_pod.
2007-04-03 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_aux(_II, _II, _OI),
__copy_backward_aux(_BI1, _BI1, _BI2)): Use __is_pod.
* include/bits/stl_deque.h (deque<>::_M_destroy_data(iterator,
iterator, const std::allocator<>&)): Use __has_trivial_constructor.
(deque<>::_M_destroy_data_dispatch): Remove.
* include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator,
_InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator,
_ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator,
_Size, const _Tp&)): Use __is_pod.
* include/bits/stl_tempbuf.h (_Temporary_buffer::
_Temporary_buffer(_ForwardIterator, _ForwardIterator)): Use __is_pod.
(_Temporary_buffer::_M_initialize_buffer): Remove.
* include/bits/stl_construct.h (_Destroy(_ForwardIterator,
_ForwardIterator)): Use __has_trivial_destructor.
(__destroy_aux): Remove.
From-SVN: r123480
2007-04-04 02:44:01 +08:00
|
|
|
const bool __simple = (__is_pod(_ValueTypeI)
|
2005-02-01 21:30:34 +08:00
|
|
|
&& __is_pointer<_II>::__value
|
|
|
|
&& __is_pointer<_OI>::__value
|
|
|
|
&& __are_same<_ValueTypeI, _ValueTypeO>::__value);
|
2004-07-02 01:53:21 +08:00
|
|
|
|
|
|
|
return std::__copy<__simple, _Category>::copy(__first, __last, __result);
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
// Helpers for streambuf iterators (either istream or ostream).
|
2007-03-03 18:29:14 +08:00
|
|
|
// NB: avoid including <iosfwd>, relatively large.
|
|
|
|
template<typename _CharT>
|
|
|
|
struct char_traits;
|
|
|
|
|
|
|
|
template<typename _CharT, typename _Traits>
|
|
|
|
class istreambuf_iterator;
|
|
|
|
|
|
|
|
template<typename _CharT, typename _Traits>
|
|
|
|
class ostreambuf_iterator;
|
|
|
|
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
template<typename _CharT>
|
2007-02-18 19:32:44 +08:00
|
|
|
typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
|
2007-03-03 18:29:14 +08:00
|
|
|
ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type
|
|
|
|
__copy_aux(_CharT*, _CharT*,
|
|
|
|
ostreambuf_iterator<_CharT, char_traits<_CharT> >);
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
|
|
|
|
template<typename _CharT>
|
2006-09-18 21:30:56 +08:00
|
|
|
typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
|
2007-03-03 18:29:14 +08:00
|
|
|
ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type
|
|
|
|
__copy_aux(const _CharT*, const _CharT*,
|
|
|
|
ostreambuf_iterator<_CharT, char_traits<_CharT> >);
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
|
|
|
|
template<typename _CharT>
|
2007-02-18 19:32:44 +08:00
|
|
|
typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
|
|
|
|
_CharT*>::__type
|
2007-03-03 18:29:14 +08:00
|
|
|
__copy_aux(istreambuf_iterator<_CharT, char_traits<_CharT> >,
|
|
|
|
istreambuf_iterator<_CharT, char_traits<_CharT> >, _CharT*);
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<bool, bool>
|
|
|
|
struct __copy_normal
|
|
|
|
{
|
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_n(_II __first, _II __last, _OI __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return std::__copy_aux(__first, __last, __result); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_normal<true, false>
|
|
|
|
{
|
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_n(_II __first, _II __last, _OI __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return std::__copy_aux(__first.base(), __last.base(), __result); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_normal<false, true>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 22:49:09 +08:00
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_n(_II __first, _II __last, _OI __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return _OI(std::__copy_aux(__first, __last, __result.base())); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_normal<true, true>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 22:49:09 +08:00
|
|
|
template<typename _II, typename _OI>
|
|
|
|
static _OI
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_n(_II __first, _II __last, _OI __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return _OI(std::__copy_aux(__first.base(), __last.base(),
|
|
|
|
__result.base())); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Copies the range [first,last) into result.
|
|
|
|
* @param first An input iterator.
|
|
|
|
* @param last An input iterator.
|
|
|
|
* @param result An output iterator.
|
|
|
|
* @return result + (first - last)
|
|
|
|
*
|
|
|
|
* This inline function will boil down to a call to @c memmove whenever
|
|
|
|
* possible. Failing that, if random access iterators are passed, then the
|
|
|
|
* loop count will be known (and therefore a candidate for compiler
|
stl_algo.h (includes, [...]): Document.
2003-07-15 Jerry Quinn <jlquinn@optonline.net>
* include/bits/stl_algo.h (includes, set_union, set_intersection,
set_difference, set_symmetric_difference, max_element, min_element,
next_permutation, prev_permutation, find_first_of, find_end):
Document.
* include/bits/stl_algobase.h (copy,copy_backward): Clarify overlap
restrictions in docs.
* include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
Document.
* docs/doxygen/doxygroups.cc (setoperations): New group.
From-SVN: r69387
2003-07-15 15:30:29 +08:00
|
|
|
* optimizations such as unrolling). Result may not be contained within
|
|
|
|
* [first,last); the copy_backward function should be used instead.
|
|
|
|
*
|
|
|
|
* Note that the end of the output range is permitted to be contained
|
|
|
|
* within [first,last).
|
2001-11-20 08:51:37 +08:00
|
|
|
*/
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _InputIterator, typename _OutputIterator>
|
|
|
|
inline _OutputIterator
|
2004-02-01 05:37:11 +08:00
|
|
|
copy(_InputIterator __first, _InputIterator __last,
|
|
|
|
_OutputIterator __result)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
|
|
|
|
__glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
typename iterator_traits<_InputIterator>::value_type>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first, __last);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2005-02-01 21:30:34 +08:00
|
|
|
const bool __in = __is_normal_iterator<_InputIterator>::__value;
|
|
|
|
const bool __out = __is_normal_iterator<_OutputIterator>::__value;
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
return std::__copy_normal<__in, __out>::__copy_n(__first, __last,
|
|
|
|
__result);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
re PR libstdc++/25482 (Specialize (overload) std::copy/find for streambuf iterators)
2006-03-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/25482
* include/bits/stl_algobase.h (__copy_aux(_CharT*, _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(const _CharT*, const _CharT*,
ostreambuf_iterator<_CharT>), __copy_aux(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT*), copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>)): Declare.
* include/bits/stl_algo.h (find(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, _CharT)): Likewise.
* include/bits/streambuf_iterator.h (copy(istreambuf_iterator<_CharT>,
istreambuf_iterator<_CharT>, ostreambuf_iterator<_CharT>),
__copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>),
__copy_aux(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT*), find(istreambuf_iterator<_CharT>, istreambuf_iterator<_CharT>,
_CharT)): Define.
(class istreambuf_iterator<>, class ostreambuf_iterator<>): Declare
friends.
* include/std/std_streambuf.h (class basic_streambuf<>): Likewise.
* include/bits/cpp_type_traits.h (struct __is_char<>): Add.
* testsuite/25_algorithms/copy/streambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/2.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/3.cc: New.
* testsuite/25_algorithms/copy/streambuf_iterators/wchar_t/4.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/1.cc: New.
* testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/2.cc: New.
* testsuite/performance/25_algorithms/copy_streambuf_iterators.cc: New.
* testsuite/performance/25_algorithms/find_istreambuf_iterators.cc: New.
From-SVN: r112247
2006-03-21 20:25:11 +08:00
|
|
|
|
2004-06-30 17:20:18 +08:00
|
|
|
template<bool, typename>
|
|
|
|
struct __copy_backward
|
|
|
|
{
|
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-06-30 17:20:18 +08:00
|
|
|
{
|
|
|
|
while (__first != __last)
|
|
|
|
*--__result = *--__last;
|
|
|
|
return __result;
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
};
|
|
|
|
|
2004-06-30 17:20:18 +08:00
|
|
|
template<bool _BoolType>
|
|
|
|
struct __copy_backward<_BoolType, random_access_iterator_tag>
|
|
|
|
{
|
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-06-30 17:20:18 +08:00
|
|
|
{
|
|
|
|
typename iterator_traits<_BI1>::difference_type __n;
|
|
|
|
for (__n = __last - __first; __n > 0; --__n)
|
|
|
|
*--__result = *--__last;
|
|
|
|
return __result;
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
};
|
|
|
|
|
2004-06-30 17:20:18 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_backward<true, random_access_iterator_tag>
|
|
|
|
{
|
|
|
|
template<typename _Tp>
|
|
|
|
static _Tp*
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b(const _Tp* __first, const _Tp* __last, _Tp* __result)
|
2004-06-30 17:20:18 +08:00
|
|
|
{
|
|
|
|
const ptrdiff_t _Num = __last - __first;
|
|
|
|
std::memmove(__result - _Num, __first, sizeof(_Tp) * _Num);
|
|
|
|
return __result - _Num;
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
inline _BI2
|
|
|
|
__copy_backward_aux(_BI1 __first, _BI1 __last, _BI2 __result)
|
|
|
|
{
|
2004-07-02 01:53:21 +08:00
|
|
|
typedef typename iterator_traits<_BI1>::value_type _ValueType1;
|
|
|
|
typedef typename iterator_traits<_BI2>::value_type _ValueType2;
|
2004-06-30 17:20:18 +08:00
|
|
|
typedef typename iterator_traits<_BI1>::iterator_category _Category;
|
stl_algobase.h (__copy_aux(_II, _II, _OI), [...]): Use __is_pod.
2007-04-03 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_aux(_II, _II, _OI),
__copy_backward_aux(_BI1, _BI1, _BI2)): Use __is_pod.
* include/bits/stl_deque.h (deque<>::_M_destroy_data(iterator,
iterator, const std::allocator<>&)): Use __has_trivial_constructor.
(deque<>::_M_destroy_data_dispatch): Remove.
* include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator,
_InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator,
_ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator,
_Size, const _Tp&)): Use __is_pod.
* include/bits/stl_tempbuf.h (_Temporary_buffer::
_Temporary_buffer(_ForwardIterator, _ForwardIterator)): Use __is_pod.
(_Temporary_buffer::_M_initialize_buffer): Remove.
* include/bits/stl_construct.h (_Destroy(_ForwardIterator,
_ForwardIterator)): Use __has_trivial_destructor.
(__destroy_aux): Remove.
From-SVN: r123480
2007-04-04 02:44:01 +08:00
|
|
|
const bool __simple = (__is_pod(_ValueType1)
|
2005-02-01 21:30:34 +08:00
|
|
|
&& __is_pointer<_BI1>::__value
|
|
|
|
&& __is_pointer<_BI2>::__value
|
|
|
|
&& __are_same<_ValueType1, _ValueType2>::__value);
|
2004-06-30 17:20:18 +08:00
|
|
|
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
return std::__copy_backward<__simple, _Category>::__copy_b(__first,
|
|
|
|
__last,
|
|
|
|
__result);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<bool, bool>
|
|
|
|
struct __copy_backward_normal
|
|
|
|
{
|
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b_n(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return std::__copy_backward_aux(__first, __last, __result); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_backward_normal<true, false>
|
|
|
|
{
|
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b_n(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return std::__copy_backward_aux(__first.base(), __last.base(),
|
|
|
|
__result); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_backward_normal<false, true>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 22:49:09 +08:00
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b_n(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return _BI2(std::__copy_backward_aux(__first, __last,
|
|
|
|
__result.base())); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-02 22:49:09 +08:00
|
|
|
template<>
|
|
|
|
struct __copy_backward_normal<true, true>
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2004-07-02 22:49:09 +08:00
|
|
|
template<typename _BI1, typename _BI2>
|
|
|
|
static _BI2
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
__copy_b_n(_BI1 __first, _BI1 __last, _BI2 __result)
|
2004-07-02 22:49:09 +08:00
|
|
|
{ return _BI2(std::__copy_backward_aux(__first.base(), __last.base(),
|
|
|
|
__result.base())); }
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Copies the range [first,last) into result.
|
stl_algo.h (includes, [...]): Document.
2003-07-15 Jerry Quinn <jlquinn@optonline.net>
* include/bits/stl_algo.h (includes, set_union, set_intersection,
set_difference, set_symmetric_difference, max_element, min_element,
next_permutation, prev_permutation, find_first_of, find_end):
Document.
* include/bits/stl_algobase.h (copy,copy_backward): Clarify overlap
restrictions in docs.
* include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
Document.
* docs/doxygen/doxygroups.cc (setoperations): New group.
From-SVN: r69387
2003-07-15 15:30:29 +08:00
|
|
|
* @param first A bidirectional iterator.
|
|
|
|
* @param last A bidirectional iterator.
|
|
|
|
* @param result A bidirectional iterator.
|
2001-11-20 08:51:37 +08:00
|
|
|
* @return result - (first - last)
|
|
|
|
*
|
|
|
|
* The function has the same effect as copy, but starts at the end of the
|
|
|
|
* range and works its way to the start, returning the start of the result.
|
|
|
|
* This inline function will boil down to a call to @c memmove whenever
|
|
|
|
* possible. Failing that, if random access iterators are passed, then the
|
|
|
|
* loop count will be known (and therefore a candidate for compiler
|
|
|
|
* optimizations such as unrolling).
|
stl_algo.h (includes, [...]): Document.
2003-07-15 Jerry Quinn <jlquinn@optonline.net>
* include/bits/stl_algo.h (includes, set_union, set_intersection,
set_difference, set_symmetric_difference, max_element, min_element,
next_permutation, prev_permutation, find_first_of, find_end):
Document.
* include/bits/stl_algobase.h (copy,copy_backward): Clarify overlap
restrictions in docs.
* include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
Document.
* docs/doxygen/doxygroups.cc (setoperations): New group.
From-SVN: r69387
2003-07-15 15:30:29 +08:00
|
|
|
*
|
|
|
|
* Result may not be in the range [first,last). Use copy instead. Note
|
|
|
|
* that the start of the output range may overlap [first,last).
|
2001-11-20 08:51:37 +08:00
|
|
|
*/
|
2001-07-19 01:09:02 +08:00
|
|
|
template <typename _BI1, typename _BI2>
|
|
|
|
inline _BI2
|
|
|
|
copy_backward(_BI1 __first, _BI1 __last, _BI2 __result)
|
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_BidirectionalIteratorConcept<_BI1>)
|
|
|
|
__glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<_BI2>)
|
|
|
|
__glibcxx_function_requires(_ConvertibleConcept<
|
2001-07-19 01:09:02 +08:00
|
|
|
typename iterator_traits<_BI1>::value_type,
|
2001-11-01 23:46:48 +08:00
|
|
|
typename iterator_traits<_BI2>::value_type>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first, __last);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2005-02-01 21:30:34 +08:00
|
|
|
const bool __bi1 = __is_normal_iterator<_BI1>::__value;
|
|
|
|
const bool __bi2 = __is_normal_iterator<_BI2>::__value;
|
stl_algobase.h (__copy_normal::copy_n): Uglify to __copy_n.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__copy_normal::copy_n): Uglify
to __copy_n.
(__copy_backward::copy_b): Likewise to __copy_b.
(__copy_backward_normal::copy_b_n): Likewise to __copy_b_n.
(copy, __copy_backward_aux, copy_backward): Adjust.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy): Add
_BinaryPredicateConcept<_Compare, _InputValueType, _OutputValueType>
(merge, set_union, set_symmetric_difference): Add
_OutputIteratorConcept<_OutputIterator, _ValueType2>.
(binary_search): Remove redundant _BinaryPredicateConcept<_Compare,
_ValueType, _Tp>, taken care by lower_bound.
* include/bits/stl_algo.h: Cosmetic changes.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/bits/stl_algo.h (merge, includes, set_union,
set_intersection, set_difference, set_symmetric_difference):
Fix concept checks.
2005-12-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (partial_sort_copy, lower_bound,
upper_bound, equal_range, binary_search): Fix concept checks.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r108758
2005-12-18 23:53:10 +08:00
|
|
|
return std::__copy_backward_normal<__bi1, __bi2>::__copy_b_n(__first,
|
|
|
|
__last,
|
|
|
|
__result);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
|
2004-06-30 17:20:18 +08:00
|
|
|
template<bool>
|
2004-06-25 17:25:57 +08:00
|
|
|
struct __fill
|
|
|
|
{
|
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
|
|
|
static void
|
|
|
|
fill(_ForwardIterator __first, _ForwardIterator __last,
|
|
|
|
const _Tp& __value)
|
|
|
|
{
|
|
|
|
for (; __first != __last; ++__first)
|
|
|
|
*__first = __value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2004-06-30 17:20:18 +08:00
|
|
|
struct __fill<true>
|
2004-06-25 17:25:57 +08:00
|
|
|
{
|
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
|
|
|
static void
|
|
|
|
fill(_ForwardIterator __first, _ForwardIterator __last,
|
|
|
|
const _Tp& __value)
|
|
|
|
{
|
|
|
|
const _Tp __tmp = __value;
|
|
|
|
for (; __first != __last; ++__first)
|
|
|
|
*__first = __tmp;
|
|
|
|
}
|
|
|
|
};
|
2001-07-19 01:09:02 +08:00
|
|
|
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
inline void
|
|
|
|
__fill_aux(_ForwardIterator __first, _ForwardIterator __last,
|
|
|
|
const _Tp& __value)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2005-02-01 21:30:34 +08:00
|
|
|
const bool __scalar = __is_scalar<_Tp>::__value;
|
2004-09-15 02:35:21 +08:00
|
|
|
std::__fill<__scalar>::fill(__first, __last, __value);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
// Specialization: for char types we can use memset (wmemset).
|
2001-07-19 01:09:02 +08:00
|
|
|
inline void
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_aux(unsigned char* __first, unsigned char* __last, unsigned char __c)
|
|
|
|
{ std::memset(__first, __c, __last - __first); }
|
2000-10-05 19:27:02 +08:00
|
|
|
|
2001-07-19 01:09:02 +08:00
|
|
|
inline void
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_aux(signed char* __first, signed char* __last, signed char __c)
|
|
|
|
{ std::memset(__first, static_cast<unsigned char>(__c), __last - __first); }
|
2001-04-03 08:26:58 +08:00
|
|
|
|
2001-07-19 01:09:02 +08:00
|
|
|
inline void
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_aux(char* __first, char* __last, char __c)
|
|
|
|
{ std::memset(__first, static_cast<unsigned char>(__c), __last - __first); }
|
2000-10-05 19:27:02 +08:00
|
|
|
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
#ifdef _GLIBCXX_USE_WCHAR_T
|
|
|
|
inline void
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_aux(wchar_t* __first, wchar_t* __last, wchar_t __c)
|
|
|
|
{ std::wmemset(__first, __c, __last - __first); }
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
template<bool>
|
|
|
|
struct __fill_normal
|
|
|
|
{
|
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
|
|
|
static void
|
|
|
|
__fill_n(_ForwardIterator __first, _ForwardIterator __last,
|
|
|
|
const _Tp& __value)
|
|
|
|
{ std::__fill_aux(__first, __last, __value); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct __fill_normal<true>
|
|
|
|
{
|
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
|
|
|
static void
|
|
|
|
__fill_n(_ForwardIterator __first, _ForwardIterator __last,
|
|
|
|
const _Tp& __value)
|
|
|
|
{ std::__fill_aux(__first.base(), __last.base(), __value); }
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills the range [first,last) with copies of value.
|
|
|
|
* @param first A forward iterator.
|
|
|
|
* @param last A forward iterator.
|
|
|
|
* @param value A reference-to-const of arbitrary type.
|
|
|
|
* @return Nothing.
|
|
|
|
*
|
|
|
|
* This function fills a range with copies of the same value. For char
|
|
|
|
* types filling contiguous areas of memory, this becomes an inline call
|
|
|
|
* to @c memset or @c wmemset.
|
|
|
|
*/
|
|
|
|
template<typename _ForwardIterator, typename _Tp>
|
|
|
|
inline void
|
|
|
|
fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value)
|
|
|
|
{
|
|
|
|
// concept requirements
|
|
|
|
__glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
|
|
|
|
_ForwardIterator>)
|
|
|
|
__glibcxx_requires_valid_range(__first, __last);
|
|
|
|
|
|
|
|
const bool __fi = __is_normal_iterator<_ForwardIterator>::__value;
|
|
|
|
std::__fill_normal<__fi>::__fill_n(__first, __last, __value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-30 17:20:18 +08:00
|
|
|
template<bool>
|
2004-06-25 17:25:57 +08:00
|
|
|
struct __fill_n
|
|
|
|
{
|
|
|
|
template<typename _OutputIterator, typename _Size, typename _Tp>
|
|
|
|
static _OutputIterator
|
|
|
|
fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
|
|
|
|
{
|
|
|
|
for (; __n > 0; --__n, ++__first)
|
|
|
|
*__first = __value;
|
|
|
|
return __first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2004-06-30 17:20:18 +08:00
|
|
|
struct __fill_n<true>
|
2004-06-25 17:25:57 +08:00
|
|
|
{
|
|
|
|
template<typename _OutputIterator, typename _Size, typename _Tp>
|
|
|
|
static _OutputIterator
|
|
|
|
fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
|
|
|
|
{
|
|
|
|
const _Tp __tmp = __value;
|
|
|
|
for (; __n > 0; --__n, ++__first)
|
|
|
|
*__first = __tmp;
|
|
|
|
return __first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename _OutputIterator, typename _Size, typename _Tp>
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
inline _OutputIterator
|
|
|
|
__fill_n_aux(_OutputIterator __first, _Size __n, const _Tp& __value)
|
2004-06-25 17:25:57 +08:00
|
|
|
{
|
2005-02-01 21:30:34 +08:00
|
|
|
const bool __scalar = __is_scalar<_Tp>::__value;
|
2004-09-15 02:35:21 +08:00
|
|
|
return std::__fill_n<__scalar>::fill_n(__first, __n, __value);
|
2004-06-25 17:25:57 +08:00
|
|
|
}
|
|
|
|
|
2001-07-19 01:09:02 +08:00
|
|
|
template<typename _Size>
|
|
|
|
inline unsigned char*
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_n_aux(unsigned char* __first, _Size __n, unsigned char __c)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
std::__fill_aux(__first, __first + __n, __c);
|
2001-07-19 01:09:02 +08:00
|
|
|
return __first + __n;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename _Size>
|
|
|
|
inline signed char*
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_n_aux(signed char* __first, _Size __n, signed char __c)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
std::__fill_aux(__first, __first + __n, __c);
|
2001-07-19 01:09:02 +08:00
|
|
|
return __first + __n;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename _Size>
|
|
|
|
inline char*
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_n_aux(char* __first, _Size __n, char __c)
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
{
|
|
|
|
std::__fill_aux(__first, __first + __n, __c);
|
|
|
|
return __first + __n;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _GLIBCXX_USE_WCHAR_T
|
|
|
|
template<typename _Size>
|
|
|
|
inline wchar_t*
|
stl_algobase.h (__fill_aux(unsigned char*, unsigned char*, const unsigned char&), [...]): Take the character by value.
2007-01-22 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algobase.h (__fill_aux(unsigned char*,
unsigned char*, const unsigned char&), __fill_aux(signed char*,
signed char*, const signed char&), __fill_aux(char*, char*,
const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)):
Take the character by value.
(__fill_n_aux): Likewise.
From-SVN: r121056
2007-01-22 23:19:40 +08:00
|
|
|
__fill_n_aux(wchar_t* __first, _Size __n, wchar_t __c)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
std::__fill_aux(__first, __first + __n, __c);
|
2001-07-19 01:09:02 +08:00
|
|
|
return __first + __n;
|
|
|
|
}
|
PR libstdc++/30449 (fill, fill_n)
2007-01-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30449 (fill, fill_n)
* include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*,
const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New.
(fill(signed char*, signed char*, const signed char&),
fill(unsigned char*, unsigned char*, const unsigned char&),
fill(char*, char*, char&), fill_n(signed char*, _Size,
const signed char&), fill_n(unsigned char*, _Size,
const unsigned char&), fill_n(char*, _Size, char&)): Rename to
__*_aux.
(__fill_normal, __fill_n_normal): New, call the latter.
(fill, fill_n): Adjust, call the latter.
* testsuite/25_algorithms/fill/4.cc: New.
* testsuite/25_algorithms/fill/5.cc: New.
From-SVN: r121027
2007-01-21 17:57:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
template<bool>
|
|
|
|
struct __fill_n_normal
|
|
|
|
{
|
|
|
|
template<typename _OI, typename _Size, typename _Tp>
|
|
|
|
static _OI
|
|
|
|
__fill_n_n(_OI __first, _Size __n, const _Tp& __value)
|
|
|
|
{ return std::__fill_n_aux(__first, __n, __value); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct __fill_n_normal<true>
|
|
|
|
{
|
|
|
|
template<typename _OI, typename _Size, typename _Tp>
|
|
|
|
static _OI
|
|
|
|
__fill_n_n(_OI __first, _Size __n, const _Tp& __value)
|
|
|
|
{ return _OI(std::__fill_n_aux(__first.base(), __n, __value)); }
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills the range [first,first+n) with copies of value.
|
|
|
|
* @param first An output iterator.
|
|
|
|
* @param n The count of copies to perform.
|
|
|
|
* @param value A reference-to-const of arbitrary type.
|
|
|
|
* @return The iterator at first+n.
|
|
|
|
*
|
|
|
|
* This function fills a range with copies of the same value. For char
|
|
|
|
* types filling contiguous areas of memory, this becomes an inline call
|
|
|
|
* to @c memset or @ wmemset.
|
|
|
|
*/
|
|
|
|
template<typename _OutputIterator, typename _Size, typename _Tp>
|
|
|
|
inline _OutputIterator
|
|
|
|
fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
|
|
|
|
{
|
|
|
|
// concept requirements
|
|
|
|
__glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator, _Tp>)
|
|
|
|
|
|
|
|
const bool __oi = __is_normal_iterator<_OutputIterator>::__value;
|
|
|
|
return std::__fill_n_normal<__oi>::__fill_n_n(__first, __n, __value);
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Finds the places in ranges which don't match.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @return A pair of iterators pointing to the first mismatch.
|
|
|
|
*
|
|
|
|
* This compares the elements of two ranges using @c == and returns a pair
|
|
|
|
* of iterators. The first iterator points into the first range, the
|
|
|
|
* second iterator points into the second range, and the elements pointed
|
|
|
|
* to by the iterators are not equal.
|
|
|
|
*/
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2>
|
|
|
|
pair<_InputIterator1, _InputIterator2>
|
|
|
|
mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
2005-01-03 01:49:51 +08:00
|
|
|
__glibcxx_function_requires(_EqualOpConcept<
|
|
|
|
typename iterator_traits<_InputIterator1>::value_type,
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
typename iterator_traits<_InputIterator2>::value_type>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
while (__first1 != __last1 && *__first1 == *__first2)
|
|
|
|
{
|
2003-06-06 08:19:17 +08:00
|
|
|
++__first1;
|
|
|
|
++__first2;
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
}
|
2003-07-04 15:22:19 +08:00
|
|
|
return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Finds the places in ranges which don't match.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @param binary_pred A binary predicate @link s20_3_1_base functor@endlink.
|
|
|
|
* @return A pair of iterators pointing to the first mismatch.
|
|
|
|
*
|
|
|
|
* This compares the elements of two ranges using the binary_pred
|
|
|
|
* parameter, and returns a pair
|
|
|
|
* of iterators. The first iterator points into the first range, the
|
|
|
|
* second iterator points into the second range, and the elements pointed
|
|
|
|
* to by the iterators are not equal.
|
|
|
|
*/
|
2004-02-01 05:37:11 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2,
|
|
|
|
typename _BinaryPredicate>
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
pair<_InputIterator1, _InputIterator2>
|
|
|
|
mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2, _BinaryPredicate __binary_pred)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
while (__first1 != __last1 && __binary_pred(*__first1, *__first2))
|
|
|
|
{
|
2003-06-06 08:19:17 +08:00
|
|
|
++__first1;
|
|
|
|
++__first2;
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
}
|
2003-07-04 15:22:19 +08:00
|
|
|
return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Tests a range for element-wise equality.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @return A boolean true or false.
|
|
|
|
*
|
|
|
|
* This compares the elements of two ranges using @c == and returns true or
|
|
|
|
* false depending on whether all of the corresponding elements of the
|
|
|
|
* ranges are equal.
|
|
|
|
*/
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2>
|
2001-07-19 01:09:02 +08:00
|
|
|
inline bool
|
2004-02-01 05:37:11 +08:00
|
|
|
equal(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
|
|
|
__glibcxx_function_requires(_EqualOpConcept<
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
typename iterator_traits<_InputIterator1>::value_type,
|
|
|
|
typename iterator_traits<_InputIterator2>::value_type>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
2004-07-05 01:57:58 +08:00
|
|
|
|
|
|
|
for (; __first1 != __last1; ++__first1, ++__first2)
|
2001-07-19 01:09:02 +08:00
|
|
|
if (!(*__first1 == *__first2))
|
|
|
|
return false;
|
2000-10-05 19:27:02 +08:00
|
|
|
return true;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Tests a range for element-wise equality.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @param binary_pred A binary predicate @link s20_3_1_base functor@endlink.
|
|
|
|
* @return A boolean true or false.
|
|
|
|
*
|
|
|
|
* This compares the elements of two ranges using the binary_pred
|
|
|
|
* parameter, and returns true or
|
|
|
|
* false depending on whether all of the corresponding elements of the
|
|
|
|
* ranges are equal.
|
|
|
|
*/
|
2004-02-01 05:37:11 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2,
|
|
|
|
typename _BinaryPredicate>
|
2001-07-19 01:09:02 +08:00
|
|
|
inline bool
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
equal(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2,
|
2001-07-19 01:09:02 +08:00
|
|
|
_BinaryPredicate __binary_pred)
|
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-05 01:57:58 +08:00
|
|
|
for (; __first1 != __last1; ++__first1, ++__first2)
|
2001-07-19 01:09:02 +08:00
|
|
|
if (!__binary_pred(*__first1, *__first2))
|
|
|
|
return false;
|
2000-10-05 19:27:02 +08:00
|
|
|
return true;
|
2001-07-19 01:09:02 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Performs "dictionary" comparison on ranges.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @param last2 An input iterator.
|
|
|
|
* @return A boolean true or false.
|
|
|
|
*
|
|
|
|
* "Returns true if the sequence of elements defined by the range
|
|
|
|
* [first1,last1) is lexicographically less than the sequence of elements
|
|
|
|
* defined by the range [first2,last2). Returns false otherwise."
|
|
|
|
* (Quoted from [25.3.8]/1.) If the iterators are all character pointers,
|
|
|
|
* then this is an inline call to @c memcmp.
|
|
|
|
*/
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2>
|
2001-07-19 01:09:02 +08:00
|
|
|
bool
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
lexicographical_compare(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2, _InputIterator2 __last2)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
2005-01-11 01:07:50 +08:00
|
|
|
__glibcxx_function_requires(_LessThanOpConcept<
|
|
|
|
typename iterator_traits<_InputIterator1>::value_type,
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
typename iterator_traits<_InputIterator2>::value_type>)
|
2005-01-11 01:07:50 +08:00
|
|
|
__glibcxx_function_requires(_LessThanOpConcept<
|
|
|
|
typename iterator_traits<_InputIterator2>::value_type,
|
|
|
|
typename iterator_traits<_InputIterator1>::value_type>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
|
|
|
__glibcxx_requires_valid_range(__first2, __last2);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-05 01:57:58 +08:00
|
|
|
for (; __first1 != __last1 && __first2 != __last2;
|
|
|
|
++__first1, ++__first2)
|
2003-06-06 08:19:17 +08:00
|
|
|
{
|
|
|
|
if (*__first1 < *__first2)
|
|
|
|
return true;
|
|
|
|
if (*__first2 < *__first1)
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
return __first1 == __last1 && __first2 != __last2;
|
|
|
|
}
|
|
|
|
|
2001-11-20 08:51:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Performs "dictionary" comparison on ranges.
|
|
|
|
* @param first1 An input iterator.
|
|
|
|
* @param last1 An input iterator.
|
|
|
|
* @param first2 An input iterator.
|
|
|
|
* @param last2 An input iterator.
|
|
|
|
* @param comp A @link s20_3_3_comparisons comparison functor@endlink.
|
|
|
|
* @return A boolean true or false.
|
|
|
|
*
|
|
|
|
* The same as the four-parameter @c lexigraphical_compare, but uses the
|
|
|
|
* comp parameter instead of @c <.
|
|
|
|
*/
|
2004-02-01 05:37:11 +08:00
|
|
|
template<typename _InputIterator1, typename _InputIterator2,
|
|
|
|
typename _Compare>
|
2001-07-19 01:09:02 +08:00
|
|
|
bool
|
BUGS: Update from 2.90.8 snapshot.
2003-06-10 Phil Edwards <pme@gcc.gnu.org>
* docs/html/17_intro/BUGS: Update from 2.90.8 snapshot.
* docs/html/17_intro/CHECKLIST: Bring up to date with respect to
correctness of container::iterator typedefs. Fix whitespace.
* docs/html/20_util/howto.html, docs/html/ext/howto.html: Add links
to allocator docs.
* docs/html/documentation.html: Regenerate.
* include/bits/basic_string.h, include/bits/basic_string.tcc,
include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
include/bits/stl_algobase.h, include/bits/stl_bvector.h,
include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
include/bits/stl_list.h, include/bits/stl_uninitialized.h,
include/bits/stl_vector.h, include/bits/vector.tcc,
include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
Change _Iter names to _Iterator, and __pos to __position.
* include/bits/stl_relops.h, include/bits/stl_numeric.h,
include/bits/stl_multiset.h, include/bits/stl_set.h:
Remove emacs markers.
* include/bits/stl_threads.h (_STL_auto_lock): Add __unused__.
From-SVN: r67736
2003-06-11 05:52:25 +08:00
|
|
|
lexicographical_compare(_InputIterator1 __first1, _InputIterator1 __last1,
|
|
|
|
_InputIterator2 __first2, _InputIterator2 __last2,
|
2001-07-19 01:09:02 +08:00
|
|
|
_Compare __comp)
|
|
|
|
{
|
|
|
|
// concept requirements
|
2003-07-05 12:05:45 +08:00
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
|
|
|
|
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
|
|
|
__glibcxx_requires_valid_range(__first2, __last2);
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2004-07-05 01:57:58 +08:00
|
|
|
for (; __first1 != __last1 && __first2 != __last2;
|
|
|
|
++__first1, ++__first2)
|
2003-06-06 08:19:17 +08:00
|
|
|
{
|
|
|
|
if (__comp(*__first1, *__first2))
|
|
|
|
return true;
|
|
|
|
if (__comp(*__first2, *__first1))
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
return __first1 == __last1 && __first2 != __last2;
|
|
|
|
}
|
|
|
|
|
2004-02-08 12:46:42 +08:00
|
|
|
inline bool
|
|
|
|
lexicographical_compare(const unsigned char* __first1,
|
2003-06-06 08:19:17 +08:00
|
|
|
const unsigned char* __last1,
|
2004-02-08 12:46:42 +08:00
|
|
|
const unsigned char* __first2,
|
2003-06-06 08:19:17 +08:00
|
|
|
const unsigned char* __last2)
|
2001-07-19 01:09:02 +08:00
|
|
|
{
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
|
|
|
__glibcxx_requires_valid_range(__first2, __last2);
|
|
|
|
|
2001-07-19 01:09:02 +08:00
|
|
|
const size_t __len1 = __last1 - __first1;
|
|
|
|
const size_t __len2 = __last2 - __first2;
|
2004-02-01 05:37:11 +08:00
|
|
|
const int __result = std::memcmp(__first1, __first2,
|
|
|
|
std::min(__len1, __len2));
|
2001-07-19 01:09:02 +08:00
|
|
|
return __result != 0 ? __result < 0 : __len1 < __len2;
|
2000-10-05 19:27:02 +08:00
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
|
|
|
|
inline bool
|
|
|
|
lexicographical_compare(const char* __first1, const char* __last1,
|
|
|
|
const char* __first2, const char* __last2)
|
|
|
|
{
|
2003-11-12 04:09:16 +08:00
|
|
|
__glibcxx_requires_valid_range(__first1, __last1);
|
|
|
|
__glibcxx_requires_valid_range(__first2, __last2);
|
|
|
|
|
numeric_traits.h: Do not include <limits>.
2007-04-13 Paolo Carlini <pcarlini@suse.de>
* include/ext/numeric_traits.h: Do not include <limits>.
(__numeric_traits_integer::__is_signed, __digits): Add.
(__numeric_traits_floating::__digits10, __max_exponent10): Add.
* src/istream.cc (ignore<char>(streamsize, int_type), operator>>
(basic_istream<char>&, char*), ignore<wchar_t>(streamsize,
int_type)): Use the latter.
* src/compatibility.cc (ignore<char>(streamsize),
ignore<wchar_t>(streamsize)): Likewise.
* include/ext/vstring_util.h (__vstring_utility<>::_S_compare):
Likewise.
* include/bits/stl_memory.h (__get_temporary_buffer): Likewise.
* include/bits/stl_algobase.h (lexicographical_compare(const char*,
const char*, const char*, const char*)): Likewise.
* include/bits/locale_facets.tcc (num_get<>::_M_extract_int(_InIter,
_InIter, ios_base&, ios_base::iostate&, _ValueT&),
num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT),
num_put<>::_M_insert_float(_OutIter, ios_base&, _CharT, char,
_ValueT), collate<>::do_hash(const _CharT*, const _CharT*)): Likewise.
* include/bits/basic_string.h (basic_string<>::_S_compare): Likewise.
* include/bits/istream.tcc (operator>>(short&), operator>>(int&),
ignore(streamsize), ignore(streamsize, int_type), operator>>
(basic_istream<>&, _CharT*)): Likewise.
* include/bits/stl_bvector.h (vector<bool>::max_size): Likewise.
* include/tr1/functional_hash.h (struct hash<long double>): Likewise.
* include/std/istream: Do not include <limits>.
* include/tr1/cmath: Include <limits>.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/char/13.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/12.cc:
Likewise.
* testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/13.cc:
Likewise.
* testsuite/27_io/ios_base/storage/2.cc: Likewise.
* include/tr1/hashtable: Do not include the whole <iterator>.
From-SVN: r123779
2007-04-13 18:54:37 +08:00
|
|
|
if (__gnu_cxx::__numeric_traits<char>::__is_signed)
|
2007-02-18 19:32:44 +08:00
|
|
|
return std::lexicographical_compare((const signed char*) __first1,
|
|
|
|
(const signed char*) __last1,
|
|
|
|
(const signed char*) __first2,
|
|
|
|
(const signed char*) __last2);
|
|
|
|
else
|
|
|
|
return std::lexicographical_compare((const unsigned char*) __first1,
|
|
|
|
(const unsigned char*) __last1,
|
|
|
|
(const unsigned char*) __first2,
|
|
|
|
(const unsigned char*) __last2);
|
2000-10-05 19:27:02 +08:00
|
|
|
}
|
2001-07-19 01:09:02 +08:00
|
|
|
|
2005-12-19 08:56:05 +08:00
|
|
|
_GLIBCXX_END_NAMESPACE
|
2000-10-05 19:27:02 +08:00
|
|
|
|
2004-02-08 12:46:42 +08:00
|
|
|
#endif
|