 3b1d283788
			
		
	
	3b1d283788
	
	
	
		
			
			git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@231311 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| //                     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 <experimental/dynarray>
 | |
| #include <cassert>
 | |
| 
 | |
| #include <algorithm>
 | |
| #include <complex>
 | |
| #include <string>
 | |
| 
 | |
| using std::experimental::dynarray;
 | |
| 
 | |
| template <class T>
 | |
| void test ( const T &val ) {
 | |
|     typedef 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
 |