|
apply_operation.hpp
Go to the documentation of this file.
11 /*************************************************************************************************/
49 typename BinaryOp::result_type apply_operation(const variant<Types1>& arg1, const variant<Types2>& arg2, BinaryOp op) {
50 return apply_operation_base<Types1,Types2>(arg1._bits, arg1._index, arg2._bits, arg2._index, op);
Constructs for static-to-dynamic integer convesion. Support for run-time instantiated types. BOOST_FORCEINLINE BinaryOp::result_type apply_operation(const variant< Types1 > &arg1, const variant< Types2 > &arg2, BinaryOp op) Invokes a generic constant operation (represented as a binary function object) on two variants... Definition: apply_operation.hpp:49 Represents a concrete instance of a run-time specified type from a set of typesA concept is typically... Definition: variant.hpp:89 Given an object with run-time specified type (denoted as an array of Bits, dynamic index... Generated on Mon Mar 26 2018 12:01:35 for Generic Image Library by
1.8.6
|