44 using typename std::vector<T>::iterator;
45 using typename std::vector<T>::const_iterator;
46 using typename std::vector<T>::size_type;
47 using std::vector<T>::begin;
48 using std::vector<T>::cbegin;
49 using std::vector<T>::cend;
50 using std::vector<T>::end;
51 using std::vector<T>::front;
52 using std::vector<T>::back;
53 using std::vector<T>::size;
55 using std::vector<T>::empty;
56 using std::vector<T>::data;
61 const T*
data_end()
const {
return data() + size(); }
62 const T*
data_cend()
const {
return data() + size(); }
68 using std::vector<T>::operator[];
71 T&
operator[](size_type n) {
return std::vector<T>::at(n); }
72 const T&
operator[](size_type n)
const {
return std::vector<T>::at(n); }
A vector class in which aterms can be stored.
const T * data_end() const
fixed_vector(size_type n, T init)
fixed_vector(size_type n)
const T & operator[](size_type n) const
const T * data_cend() const
T & operator[](size_type n)
MCRL2_EXPORT bool init(rewriter_interface *i, RewriterCompilingJitty *this_rewriter)
static void clear(CONTAINER &c)
A class that takes a linear process specification and checks all tau-summands of that LPS for conflue...