MCPcopy Create free account
hub / github.com/apache/trafficserver / first

Method first

include/tscore/List.h:847–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

845template <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 {

Callers 4

parse_log_buffFunction · 0.45
resolve_custom_entryMethod · 0.45
logMethod · 0.45
operator==Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected