Functions | |
template<class T > | |
auto | boost::afio::make_io_req (future<> _precondition, T &&v, off_t _where)-> decltype(detail |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use. | |
template<class T > | |
io_req< const std::initializer_list< T > > | boost::afio::make_io_req (future<> _precondition, const std::initializer_list< T > &v, off_t _where) |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use. | |
template<class T > | |
auto | boost::afio::make_io_req (future<> _precondition, T &&v, size_t _length, off_t _where)-> decltype(detail |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use. |
auto boost::afio::make_io_req | ( | future<> | _precondition, |
T && | v, | ||
off_t | _where | ||
) |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use.
_precondition | An optional precondition for this operation |
v | A pointer to memory or reference to object into which to read or write |
_where | The offset at which to transfer |
io_req<const std::initializer_list<T> > boost::afio::make_io_req | ( | future<> | _precondition, |
const std::initializer_list< T > & | v, | ||
off_t | _where | ||
) |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use.
_precondition | An optional precondition for this operation |
v | A pointer to memory or reference to object into which to read or write |
_where | The offset at which to transfer |
auto boost::afio::make_io_req | ( | future<> | _precondition, |
T && | v, | ||
size_t | _length, | ||
off_t | _where | ||
) |
Convenience instantiator of a io_req, letting the compiler deduce the template specialisation to use.
_precondition | An optional precondition for this operation |
v | A pointer to memory or reference to object into which to read or write |
_where | The offset at which to transfer |
_length | The number of bytes to transfer |
January, 2014 |
Copyright © 2013-2014 Niall Douglas, Cork, Ireland Copyright © 2013 Paul Kirth, California |