MCPcopy Create free account
hub / github.com/FastLED/FastLED / OpSub

Class OpSub

examples/AutoResearch/AutoResearchSimd.h:1183–1185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1181 template<typename T> T operator()(T a, T b) const { return a + b; }
1182};
1183struct OpSub {
1184 template<typename T> T operator()(T a, T b) const { return a - b; }
1185};
1186struct OpMul {
1187 template<typename T> T operator()(T a, T b) const { return a * b; }
1188};

Callers 1

runMultiplyBenchmarkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected