42 using typename std::vector<T>::iterator;
43 using typename std::vector<T>::const_iterator;
44 using typename std::vector<T>::size_type;
45 using std::vector<T>::begin;
46 using std::vector<T>::cbegin;
47 using std::vector<T>::cend;
48 using std::vector<T>::end;
49 using std::vector<T>::front;
50 using std::vector<T>::back;
51 using std::vector<T>::size;
53 using std::vector<T>::empty;
54 using std::vector<T>::data;
60 using std::vector<T>::operator[];
63 T&
operator[](size_type n) {
return std::vector<T>::at(n); }
64 const T&
operator[](size_type n)
const {
return std::vector<T>::at(n); }
A vector class in which aterms can be stored.
fixed_vector(size_type n, T init)
fixed_vector(size_type n)
const T & operator[](size_type n) const
T & operator[](size_type n)
MCRL2_EXPORT bool init(rewriter_interface *i, RewriterCompilingJitty *this_rewriter)
A class that takes a linear process specification and checks all tau-summands of that LPS for conflue...