Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
PrimitiveCompare.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/set>
9
10namespace compare {
11
13public:
14 template < class T >
15 static bool compare ( const T & a, const T & b ) {
16 return a == b;
17 }
18};
19
20} /* namespace compare */
21
Definition: PrimitiveCompare.h:12
static bool compare(const T &a, const T &b)
Definition: PrimitiveCompare.h:15
Definition: AutomatonCompare.h:29