MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / max

Function max

include/hxMath.h:38–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36 inline static double pow(double inA,double inB) { return ::std::pow(inA,inB); }
37 inline static double log(double inA) { return ::std::log(inA); }
38 inline static double max(double inA,double inB) { return inA>inB ? inA:inA==inA?inB:inA; }
39 inline static double min(double inA,double inB) { return inA<inB ? inA:inA==inA?inB:inA; }
40
41 inline static double atan(double inA) { return ::std::atan(inA); }

Callers 9

indexOfMethod · 0.85
lastIndexOfMethod · 0.85
SortMethod · 0.85
runMethod · 0.85
CollectMethod · 0.85
createFreeListMethod · 0.85
CallAllocMethod · 0.85
beginGenerationMethod · 0.85
ThreadImpl_objMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected