Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 7789ef3d8d.
PrevUpHomeNext

windows::basic_random_access_handle::basic_random_access_handle

Construct a random-access handle without opening it.

explicit basic_random_access_handle(
    const executor_type & ex);
  » more...

template<
    typename ExecutionContext>
explicit basic_random_access_handle(
    ExecutionContext & context,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value, defaulted_constraint >  = defaulted_constraint());
  » more...

Construct a random-access handle on an existing native handle.

basic_random_access_handle(
    const executor_type & ex,
    const native_handle_type & handle);
  » more...

template<
    typename ExecutionContext>
basic_random_access_handle(
    ExecutionContext & context,
    const native_handle_type & handle,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);
  » more...

Move-construct a random-access handle from another.

basic_random_access_handle(
    basic_random_access_handle && other);
  » more...

Move-construct a random-access handle from a handle of another executor type.

template<
    typename Executor1>
basic_random_access_handle(
    basic_random_access_handle< Executor1 > && other,
    constraint_t< is_convertible< Executor1, Executor >::value, defaulted_constraint >  = defaulted_constraint());
  » more...

PrevUpHomeNext