MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / arraySize

Function arraySize

Sources/Shared/Containers/Array.h:777–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

775
776 /** @brief Array size */
777 template<class T> std::size_t arraySize(const Array<T>& view) {
778 return view.size();
779 }
780
781 template<class T, class D> inline Array<T, D>::Array(Array<T, D>&& other) noexcept : _data{other._data}, _size{other._size}, _deleter{other._deleter} {
782 other._data = nullptr;

Callers 15

lowercaseUnicodeFunction · 0.70
uppercaseUnicodeFunction · 0.70
TryParseFormatFunction · 0.70
StartProcessingStdinMethod · 0.50
PrintVersionFunction · 0.50
mainFunction · 0.50
GetAbsolutePathMethod · 0.50
GetExecutablePathMethod · 0.50
ContainsUnknownTokenMethod · 0.50
GetLanguageNameMethod · 0.50
RunMethod · 0.50

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected