blob: 20455b258c0a575c547956b95a9423b1c50375d3 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
Howard Hinnant7b2cb482010-11-17 21:11:40 +000012// basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<charT> il);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000013
14#include <string>
15#include <cassert>
16
Marshall Clow061d0cc2013-11-26 20:58:02 +000017#include "min_allocator.h"
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000018
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019int main()
20{
Howard Hinnante3e32912011-08-12 21:56:02 +000021#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022 {
23 std::string s("123def456");
Howard Hinnant7b2cb482010-11-17 21:11:40 +000024 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'});
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000025 assert(s == "123abc456");
26 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070027#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000028 {
29 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
30 S s("123def456");
31 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'});
32 assert(s == "123abc456");
33 }
34#endif
Howard Hinnante3e32912011-08-12 21:56:02 +000035#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000036}