You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							668 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							668 B
						
					
					
				
								#include "src/utility/vector.h"
							 | 
						|
								
							 | 
						|
								//template<typename ValueType>
							 | 
						|
								//std::ostream& operator<<(std::ostream& out, std::vector<ValueType> const& vector) {
							 | 
						|
								std::ostream& operator<<(std::ostream& out, std::vector<double> const& vector) {
							 | 
						|
								    out << "vector (" << vector.size() << ") [ ";
							 | 
						|
								    for (uint_fast64_t i = 0; i < vector.size() - 1; ++i) {
							 | 
						|
								        out << vector[i] << ", ";
							 | 
						|
								    }
							 | 
						|
								    out << vector.back();
							 | 
						|
								    out << " ]";
							 | 
						|
								    return out;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								// Explicitly instantiate functions.
							 | 
						|
								//template std::ostream& operator<<(std::ostream& out, std::vector<double> const& vector);
							 | 
						|
								//template std::ostream& operator<<(std::ostream& out, std::vector<uint_fast64_t> const& vector);
							 |