MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / min

Function min

Source/astcenc_mathlib.h:169–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167 */
168template<typename T>
169static inline T min(T p, T q)
170{
171 return p < q ? p : q;
172}
173
174/**
175 * @brief Return the minimum of three values.

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.40