MCPcopy Create free account
hub / github.com/dmlc/parameter_server / back

Method back

src/util/shared_array.h:97–97  ·  view source on GitHub ↗

Element access:

Source from the content-addressed store, hash-verified

95
96 // Element access:
97 V back() const { CHECK(!empty()); return data_[size_-1]; }
98 V front() const { CHECK(!empty()); return data_[0]; }
99 V& operator[] (int i) { return data_[i]; }
100 const V& operator[] (int i) const { return data_[i]; }

Callers 11

fillMatricesMethod · 0.80
submitMethod · 0.80
submitAndWaitMethod · 0.80
remapIndexMethod · 0.80
colBlockMethod · 0.80
rowBlockMethod · 0.80
debugStringMethod · 0.80
joinFunction · 0.80
readFilenamesInDirectoryFunction · 0.80
getFilenameFunction · 0.80
removeExtensionFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected