|
timemory 3.3.0
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.
|
The purpose of this operation class is construct an object with specific args. More...
#include "timemory/operations/types/construct.hpp"
Collaboration diagram for tim::operation::construct< Tp >:Public Types | |
| using | type = Tp |
Public Member Functions | |
| TIMEMORY_DELETED_OBJECT (construct) template< typename Arg | |
| typename Args | construct (type &obj, Arg &&arg, Args &&... args) |
| template<typename... Args, enable_if_t< sizeof...(Args)==0, int > = 0> | |
| construct (type &, Args &&...) | |
Static Public Member Functions | |
| template<typename... Args, enable_if_t< std::is_constructible< Tp, Args... >::value, int > = 0> | |
| static auto | get (Args &&... args) |
| template<typename... Args, enable_if_t<!std::is_constructible< Tp, Args... >::value &&std::is_default_constructible< Tp >::value, int > = 0> | |
| static auto | get (Args &&...) |
The purpose of this operation class is construct an object with specific args.
Definition at line 51 of file construct.hpp.
| using tim::operation::construct< Tp >::type = Tp |
Definition at line 53 of file construct.hpp.
| tim::operation::construct< Tp >::construct | ( | type & | obj, |
| Arg && | arg, | ||
| Args &&... | args | ||
| ) |
Definition at line 135 of file construct.hpp.
| tim::operation::construct< Tp >::construct | ( | type & | , |
| Args && | ... | ||
| ) |
Definition at line 144 of file construct.hpp.
|
inlinestatic |
Definition at line 65 of file construct.hpp.
|
inlinestatic |
Definition at line 73 of file construct.hpp.
| tim::operation::construct< Tp >::TIMEMORY_DELETED_OBJECT | ( | construct< Tp > | ) |