約 110,000 件の結果
リンクを新しいタブで開く
  1. std::async - cppreference.com

    2024年10月28日 · The function template std::async runs the function f asynchronously (potentially in a separate thread which might be a part of a thread pool) and returns a …

  2. std::future - cppreference.com

    2024年3月12日 · An asynchronous operation (created via std::async, std::packaged_task, or std::promise) can provide a std::future object to the creator of that asynchronous operation. …

  3. Coroutines (C++20) - cppreference.com

    2025年3月5日 · A coroutine is a function that can suspend execution to be resumed later. Coroutines are stackless: they suspend execution by returning to the caller, and the data that is …

  4. Extensions for networking - cppreference.com

    2023年9月11日 · The C++ Extensions for Networking, ISO/IEC TS 19216:2018, defines new components for the C++ standard library listed on this page. The Networking TS is based on …

  5. std:: launch - cppreference.com

    2025年3月19日 · std::launch is a BitmaskType. It specifies the launch policy for a task executed by the std::async function.

  6. std::shared_future - cppreference.com

    2023年10月23日 · The class template std::shared_future provides a mechanism to access the result of asynchronous operations, similar to std::future, except that multiple threads are …

  7. std:: promise - cppreference.com

    2023年10月23日 · The class template std::promise provides a facility to store a value or an exception that is later acquired asynchronously via a std::future object created by the …

  8. std::latch::count_down - cppreference.com

    2023年10月22日 · Atomically decrements the internal counter by n without blocking the caller. If n is greater than the value of the internal counter or is negative, the behavior is undefined. This …

  9. std::stop_token - cppreference.com

    2024年7月31日 · The stop_token class provides the means to check if a stop request has been made or can be made, for its associated std::stop_source object. It is essentially a thread-safe …

  10. std:: counting_semaphore, std:: binary_semaphore

    2024年5月19日 · 2)binary_semaphore is an alias for specialization of std::counting_semaphore with LeastMaxValue being 1. Implementations may implement binary_semaphore more …