GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::split(3) C++ Standard Libary std::experimental::split(3)

std::experimental::split - std::experimental::split


Defined in header <experimental/simd>
template < std::size_t... Sizes, class T, class Abi >


std::tuple<simd<T, simd_abi::deduce_t<T, Sizes>>...> (1) (parallelism TS v2)


split( const simd<T, Abi>& v );
template < std::size_t... Sizes, class T, class Abi >


std::tuple<simd_mask<T, simd_abi::deduce_t<T, Sizes>>...> (2) (parallelism TS v2)


split( const simd_mask<T, Abi>& v );
template < class V, class Abi >


std::array<V, simd_size_v<typename V::value_type, Abi> / (3) (parallelism TS v2)
V::size()>


split( const simd<typename V::value_type, Abi>& v );
template < class V, class Abi >


std::array<V, simd_size_v<typename V::value_type, Abi> / (4) (parallelism TS v2)
V::size()>


split( const simd_mask<typename V::value_type, Abi>& v );


Splits the input simd or simd_mask object into multiple simd or simd_mask objects.


1-2) split the input object into potentially different types (e.g. types with
different sizes) of objects. These functions do not participate in overloading
resolution unless Sizes... sum up to v.size().
3-4) split the input object into a array of objects. These functions do not
participate in overloading resolution unless


* The array element must be of type simd or simd_mask, for the type of v as simd
or simd_mask, respectively.
* simd_size_v<typename V::value_type, Abi> is an integral multiple of V::size().


v - the input simd or simd_mask object


1-2) a tuple that contains the splitted simd or simd_mask objects.
3-4) an array that contains the splitted simd or simd_mask objects.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.