Home | History | Annotate | Download | only in calc++

Lines Matching defs:seq_

55     stack () : seq_ ()
59 stack (unsigned int n) : seq_ (n)
67 return seq_[i];
74 return seq_[i];
81 seq_.push_front (t);
89 seq_.pop_front ();
96 return seq_.size ();
99 inline const_iterator begin () const { return seq_.rbegin (); }
100 inline const_iterator end () const { return seq_.rend (); }
103 S seq_;