| 845 | template <class C, class A = DefaultAlloc> struct List { |
| 846 | ConsCell<C, A> *head; |
| 847 | C |
| 848 | first() |
| 849 | { |
| 850 | if (head) { |
| 851 | return head->car; |
| 852 | } else { |
| 853 | return 0; |
| 854 | } |
| 855 | } |
| 856 | C |
| 857 | car() |
| 858 | { |
no outgoing calls
no test coverage detected