winrt::single_threaded_vector 関数テンプレート (C++/WinRT)
汎用 (ただし監視できない) コレクションを実装する型のオブジェクトを作成して返す関数テンプレート。 オブジェクトは IVector
必要に応じて、既存の
詳細とコード例については、「C++/WinRTを使用したコレクションの
構文
template <typename T, typename Allocator = std::allocator<T>>
winrt::Windows::Foundation::Collections::IVector<T> single_threaded_vector(std::vector<T, Allocator>&& values = {});
テンプレート パラメーター
typename T
コレクションの要素の型。
typename Allocator
コレクションを初期化するベクターのアロケーターの型 (渡す場合)、それ以外の場合は既定のアロケーター。
パラメーター
戻り値
IVector 新しいコレクション オブジェクトを表します。
必要条件
サポートされている最小 SDK: Windows SDK バージョン 10.0.17763.0 (Windows 10 バージョン 1809) を
Namespace: winrt
ヘッダー: %WindowsSdkDir%Include<WindowsTargetPlatformVersion>\cppwinrt\winrt\base.h (既定で含まれます)
関連項目
- winrt 名前空間 を
する - winrt::vector_base 構造体テンプレート
- C++/WinRT を使用してコレクションを
する