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

Method pop_back

CPP/vector-concepts/vector.h:25–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 cs++;
24 }
25 void pop_back(){
26 if(cs>=0){
27 cs--;
28 }
29
30 }
31 bool isEmpty(){
32 return cs==0;
33 }

Callers 10

shortestPathsMethod · 0.80
maxSlidingWindowMethod · 0.80
calPointsMethod · 0.80
findPathFunction · 0.80
insertFunction · 0.80
findCombinationsMethod · 0.80
findCombinationsMethod · 0.80
generateCombinationsMethod · 0.80
generateFunction · 0.80
findCombinationFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected