Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Concepts
VectorCompare.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/vector>
9
10namespace compare {
11
13public:
14 template < class T >
15 static bool compare ( const ext::vector < T > & a, const ext::vector < T > & b ) {
16 return a == b;
17 }
18};
19
20} /* namespace compare */
21
Definition: VectorCompare.h:12
static bool compare(const ext::vector< T > &a, const ext::vector< T > &b)
Definition: VectorCompare.h:15
Class extending the vector class from the standard library. Original reason is to allow printing of t...
Definition: vector.hpp:45
Definition: AutomatonCompare.h:29