summaryrefslogtreecommitdiffstats
path: root/libcxx/test/containers/sequences/dynarray/dynarray.mutate/default.pass.cpp
blob: 57773414a410ca19dd443c53d3d114932f9aa8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// dynarray.data

// void fill(const T& v);
// const T* data() const noexcept;

  
#include <__config>

#if _LIBCPP_STD_VER > 11

#include <dynarray>
#include <cassert>

#include <algorithm>
#include <complex>
#include <string>


template <class T>
void test ( const T &val ) {
    typedef std::dynarray<T> dynA;
    
    dynA d1 ( 4 );
    d1.fill ( val );
    assert ( std::all_of ( d1.begin (), d1.end (), 
                    [&val]( const T &item ){ return item == val; } ));  
    }

int main()
{
    test<int> ( 14 );
    test<double> ( 14.0 );
    test<std::complex<double>> ( std::complex<double> ( 14, 0 ));
    test<std::string> ( "fourteen" );
}
#else
int main() {}
#endif
OpenPOWER on IntegriCloud