Home | History | Annotate | Download | only in ADT

Lines Matching refs:Head

28   T Head;
31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = 0)
32 : Head(head), Tail(tail) {}
40 const T& getHead() const { return Head; }
50 Profile(ID, Head, Tail);
94 /// begin - Returns an iterator referring to the head of the list, or
122 /// getHead - Returns the head of the list.
124 assert (!isEmpty() && "Cannot get the head of an empty list.");
166 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail) {
172 ListTy::Profile(ID, Head, TailImpl);
179 new (L) ListTy(Head, TailImpl);