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
						
					
					
						
							709 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							709 B
						
					
					
				
								#pragma once
							 | 
						|
								
							 | 
						|
								#include "detail/dynamic_bitset_base.hpp"
							 | 
						|
								
							 | 
						|
								#include "small_vector.hpp"
							 | 
						|
								
							 | 
						|
								template <typename T = unsigned long long>
							 | 
						|
								using dynamic_bitset = detail::dynamic_bitset<detail::stl_vector_bind<>::template type, T>;
							 | 
						|
								
							 | 
						|
								template <typename T = unsigned long long>
							 | 
						|
								using dynamic_bitset_mp = detail::dynamic_bitset<detail::stl_vector_bind<mi_stl_allocator>::template type, T>;
							 | 
						|
								
							 | 
						|
								template <typename T = unsigned long long, std::size_t N = 1>
							 | 
						|
								using small_dynamic_bitset = detail::dynamic_bitset<detail::small_vector_bind<N>::template type, T>;
							 | 
						|
								
							 | 
						|
								template <typename T = unsigned long long, std::size_t N = 1>
							 | 
						|
								using small_dynamic_bitset_mp = detail::dynamic_bitset<detail::small_vector_mp_bind<N>::template type, T>;
							 |