MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / lround

Function lround

support/ToolchainSupport.h:85–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83 */
84template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
85inline long lround(T value)
86{
87 return ::lround(value);
88}
89
90/** Truncate floating-point value.
91 *

Calls

no outgoing calls

Tested by

no test coverage detected