timemory  3.2.1
Modular C++ Toolkit for Performance Analysis and Logging. Profiling API and Tools for C, C++, CUDA, Fortran, and Python. The C++ template API is essentially a framework to creating tools: it is designed to provide a unifying interface for recording various performance measurements alongside data logging and interfaces to other tools.
tim::component::operators Namespace Reference

Functions

template<typename Tp >
Tp operator- (Tp lhs, const Tp &rhs)
 

Function Documentation

◆ operator-()

template<typename Tp >
Tp tim::component::operators::operator- ( Tp  lhs,
const Tp &  rhs 
)

Definition at line 75 of file types.hpp.

76 {
77  math::minus(lhs, rhs);
78  return lhs;
79 }
Tp & minus(Tp &, const Up &)
Definition: math.hpp:633

References tim::math::minus().