MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Front

Method Front

CPP/vector-concepts/vector.h:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 return cs==0;
33 }
34 int Front(){
35 return arr[0];
36
37 }
38 int back(){
39 return arr[cs-1];
40 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected