std::experimental::simd_abi::deduce
Min standard notice:
Header: <experimental/simd>
The type deduce<T, N, Abis…>::type is present if and only if:
# Declarations
template< class T, std::size_t N, class ...Abis >
struct deduce;
(parallelism TS v2)
# Notes
simd_abi::deduce is SFINAE-friendly.
The ABI tag deduced via this facility is a Quality-of-Implementation feature.
Implementations can base the choice on Abis…, but can also ignore the Abis… arguments. A simple implementation might simply return fixed_size
# Example
This section is incompleteReason: no example