Document Number: | |
---|---|
Date: | |
Revises: | |
Editor: | Google, Inc. |
Note: this is an early draft. It’s known to be incomplet and incorrekt, and it has lots of bad formatting.
This technical specification describes extensions to the C++
Standard Library (
This technical specification is non-normative. Some of the library components in this technical specification may be considered for standardization in a future version of C++, but they are not currently part of any C++ standard. Some of the components in this technical specification may never be standardized, and others may be standardized in a substantially changed form.
The goal of this technical specification is to build more widespread existing practice for an expanded C++ standard library. It gives advice on extensions to those vendors who wish to provide them.
The following referenced document is indispensable for the application of this document. For dated references, only the edition cited applies. For undated references, the latest edition of the referenced document (including any amendments) applies.
ISO/IEC 14882:— is herein called the C++ Standard. References to clauses within the C++ Standard are written as "C++14 §3.2". The library described in ISO/IEC 14882:— clauses 17–30 is herein called the C++ Standard Library.
Unless otherwise specified, the whole of the C++ Standard's Library
introduction (
Since the extensions described in this technical specification
are experimental and not part of the C++ standard library, they
should not be declared directly within namespace
std
.
Unless otherwise specified, all components described in this technical specification that are not modifications of existing interfaces in the C++ Standard Library
are declared in namespace std::experimental::fundamentals_v1
or a subnamespace thereof.
Each header described in this technical
specification shall import the contents of
std::experimental::fundamentals_v1
into
std::experimental
as if by
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {}
}
}
This technical specification also describes some experimental modifications to existing interfaces in the C++ Standard Library.
These modifications are described by quoting the affected parts of the standard
and using underlining to represent added text and strike-through to represent deleted text.
Unless otherwise specified, references to other entities
described in this technical specification are assumed to be
qualified with std::experimental::fundamentals_v1::
,
and references to entities described in the standard are assumed
to be qualified with std::
.
Extensions that are expected to eventually be added to an
existing header <meow>
are provided inside the
<experimental/meow>
header, which shall include
the standard contents of <meow>
as if by
#include <meow>
New headers are also provided in the
<experimental/>
directory, but without such an
#include
.
<experimental/algorithm> |
<experimental/memory> |
<experimental/string_view> |
<experimental/any> |
<experimental/memory_resource> |
<experimental/system_error> |
<experimental/chrono> |
<experimental/net> |
<experimental/tuple> |
<experimental/deque> |
<experimental/optional> |
<experimental/type_traits> |
<experimental/forward_list> |
<experimental/ratio> |
<experimental/unordered_map> |
<experimental/functional> |
<experimental/regex> |
<experimental/unordered_set> |
<experimental/list> |
<experimental/set> |
<experimental/utility> |
<experimental/map> |
<experimental/string> |
<experimental/vector> |
For the purposes of this document, the terms and definitions given in the C++ Standard and the folowing apply.
This section describes tentative plans for future versions of this technical specification and plans for moving content into future versions of the C++ Standard.
The C++ committee intends to release a new version of this
technical specification approximately every year, containing the
library extensions we hope to add to a near-future version of the
C++ Standard. Future versions will define their contents in
std::experimental::fundamentals_v2
,
std::experimental::fundamentals_v3
, etc., with the
most recent implemented version inlined into
std::experimental
.
When an extension defined in this or a future version of this
technical specification represents enough existing practice, it
will be moved into the next version of the C++ Standard by
removing the experimental::fundamentals_vN
segment of its namespace and by removing the
experimental/
prefix from its header's path.
For the sake of improved portability between partial implementations of various C++ standards,
WG21 (the ISO technical committee for the C++ programming language) recommends
that implementers and programmers follow the guidelines in this section concerning feature-test macros.
Implementers who provide a new standard feature should define a macro with the recommended name and value, in the same circumstances under which the feature is available (for example, taking into account relevant command-line options), to indicate the presence of support for that feature.
Programmers who wish to determine whether a feature is available in an implementation should base that determination on the state of the macro with the recommended name. (The absence of a tested feature may result in a program with decreased functionality, or the relevant functionality may be provided in a different way. A program that strictly depends on support for a feature can just try to use the feature unconditionally; presumably, on an implementation lacking necessary support, translation will fail.)
Doc. No. | Title | Primary Section | Macro Name | Value | Header |
---|---|---|---|---|---|
N3925 | A sample Proposal |
__cpp_lib_experimental_sample |
201402 | <experimental/algorithm> |
|
N3923 | A SFINAE-Friendly iterator_traits |
__cpp_lib_experimental_iterator_traits_sfinae |
201402 | <iterator> |
|
N3843 | A SFINAE-Friendly common_type |
__cpp_lib_experimental_common_type_sfinae |
201402 | <type_traits> |
Implementations that conform to this technical specification shall behave as if the modifications contained in this section are made to the C++ Standard.
The following changes to the uses_allocator
trait and to the description of uses-allocator construction
allow a memory_resource
pointer act as an allocator in many circumstances.
20.7.7 uses_allocator [allocator.uses]
20.7.7.1 uses_allocator trait [allocator.uses.trait]
template <class T, class Alloc> struct uses_allocator;
- Remarks:
- automatically detects whether
T
has a nestedallocator_type
that is convertible fromAlloc
. Meets the BinaryTypeTrait requirements (20.10.1). The implementation shall provide a definition that is derived fromtrue_type
if a typeT::allocator_type
exists and eitheris_convertible<Alloc, T::allocator_type>::value != false
orT::allocator_type
is an alias forstd::experimental::erased_type
(), otherwise it shall be derived from 3.1.2 false_type
. A program may specialize this template to derive fromtrue_type
for a user-defined typeT
that does not have a nestedallocator_type
but nonetheless can be constructed with an allocator where either:
- the first argument of a constructor has type
allocator_arg_t
and the second argument has typeAlloc
or- the last argument of a constructor has type
Alloc
.20.7.7.2 uses-allocator construction [allocator.uses.construction]
Uses-allocator construction with allocator
Alloc
refers to the construction of an objectobj
of typeT
, using constructor argumentsv1, v2, ..., vN
of typesV1, V2, ..., VN
, respectively, and an allocatoralloc
of typeAlloc
, whereAlloc
either (1) meets the requirements of an allocator (), or (2) is a pointer type convertible to C++14 §17.6.3.5 std::experimental::pmr::memory_resource*
(), according to the following rules: 8.5
std::shared_ptr
and std::weak_ptr
namespace std {
template<class T> class shared_ptr {
public:
typedef Ttypename remove_extent<T>::type element_type;
// C++14 §20.8.2.2.1 , constructors:
...
template<class Y> shared_ptr(const shared_ptr<Y>& r, Telement_type* p) noexcept;
...
// C++14 §20.8.2.2.5 , observers:
Telement_type* get() const noexcept;
T& operator*() const noexcept;
T* operator->() const noexcept;
element_type& operator[](ptrdiff_t i) const noexcept;
...
}
std::shared_ptr
constructorstemplate<class Y> explicit shared_ptr(Y* p);
p
shall be convertible to T*
. Y
shall be a complete type. The expression delete p
shall be well formed, shall have well defined behavior, and shall not throw exceptions.Y
shall be a complete type.
The expression delete[] p
, when T
is an array type,
or delete p
, when T
is not an array type,
shall be well-formed, shall have well defined behavior, and shall not throw exceptions.
When T
is U[N]
, Y(*)[N]
shall be convertible to T*
;
when T
is U[]
, Y(*)[]
shall be convertible to T*
;
otherwise, Y*
shall be convertible to T*
.T
is not an array type, cshared_ptr
object that owns the pointer p
.
Otherwise, constructs a shared_ptr
that owns p
and a deleter of an unspecified type that calls delete[] p
.use_count() == 1 && get() == p
.bad_alloc
, or an implementation-defined exception when a resource other than memory could not be obtained.delete p
is called when T
is not an array type, delete[] p
otherwise.template<class Y, class D> shared_ptr(Y* p, D d); template<class Y, class D, class A> shared_ptr(Y* p, D d, A a); template <class D> shared_ptr(nullptr_t p, D d); template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
p
shall be convertible to T*
. D
shall be CopyConstructible
. The copy constructor and destructor of D
shall not throw exceptions. The expression d(p)
shall be well formed, shall have well defined behavior, and shall not throw exceptions. A
shall be an allocator (A
shall not throw exceptions.
When T
is U[N]
, Y(*)[N]
shall be convertible to T*
;
when T
is U[]
, Y(*)[]
shall be convertible to T*
;
otherwise, Y*
shall be convertible to T*
.shared_ptr
object that owns the object p
and the deleter d
. The second and fourth constructors shall use a copy of a
to allocate memory for internal use.use_count() == 1 && get() == p
.bad_alloc
, or an implementation-defined exception when a resource other than memory could not be obtained.d(p)
is called.template<class Y> shared_ptr(const shared_ptr<Y>& r, Telement_type* p) noexcept;
shared_ptr
instance that stores p
and shares ownership with r
.get() == p && use_count() == r.use_count()
shared_ptr(const shared_ptr& r) noexcept; template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept;
Y*
is T*
.r
is empty, constructs an empty shared_ptr
object; otherwise, constructs a shared_ptr
object that shares ownership with r
.get() == r.get() && use_count() == r.use_count()
.shared_ptr(shared_ptr&& r) noexcept; template<class Y> shared_ptr(shared_ptr<Y>&& r) noexcept;
Y*
is T*
.shared_ptr
instance from r
.*this
shall contain the old value of r
. r
shall be empty. r.get() == 0.
template<class Y> explicit shared_ptr(const weak_ptr<Y>& r);
Y*
shall be T*
.shared_ptr
object that shares ownership with r
and stores a copy of the pointer stored in r
.use_count() == r.use_count()
.bad_weak_ptr
when r.expired()
.template <class Y, class D> shared_ptr(unique_ptr<Y, D>&& r);
Y*
shall be compatible with T*
.shared_ptr(r.release(), r.get_deleter())
when D
is not a reference type, otherwise shared_ptr(r.release(), ref(r.get_deleter()))
.std::shared_ptr
observersTelement_type* get() const noexcept;
T& operator*() const noexcept;
get() != 0
.*get()
.T
is an array type or cv-qualified void
, it is unspecified whether this member function is declared. If it is declared, it is unspecified what its return type is, except that the declaration (although not necessarily the definition) of the function shall be well formed.T* operator->() const noexcept;
get() != 0
.get()
.T
is an array type, it is unspecified whether this member function is declared.
If it is declared, it is unspecified what its return type is, except that the declaration (although not necessarily the definition) of the function shall be well formed.element_type& operator[](ptrdiff_t i) const noexcept;
get() != 0 && i >= 0
. If T
is U[N]
, i < N
.get()[i]
.T
is not an array type, it is unspecified whether this member function is declared.
If it is declared, it is unspecified what its return type is, except that the declaration (although not necessarily the definition) of the function shall be well formed.std::shared_ptr
caststemplate<class T, class U> shared_ptr<T> static_pointer_cast(const shared_ptr<U>& r) noexcept;
static_cast<T*>(r.get())
static_cast<T*>((U*)0)
shall be well formed.r
is empty, an empty shared_ptr<T>
; otherwise, a shared_ptr<T>
object that stores static_cast<T*>(r.get())
and shares ownership with r
.shared_ptr<T>(r, static_cast<typename shared_ptr<T>::element_type*>(r.get()))
w.get() == static_cast<T*>(r.get())
and w.use_count() == r.use_count()
, where w
is the return value.template<class T, class U> shared_ptr<T> dynamic_pointer_cast(const shared_ptr<U>& r) noexcept;
dynamic_cast<T*>(r.get())
dynamic_cast<T*>((U*)0)
shall be well formeddynamic_cast<Ttypename shared_ptr<T>::element_type*>(r.get())
returns a nonzero value p
, shared_ptr<T>
object that stores a copy of it and shares ownership with r
shared_ptr<T>(r, p)
;shared_ptr<T>
objectshared_ptr<T>()
.w.get() == dynamic_cast<T*>(r.get())
, where w
is the return value.template<class T, class U> shared_ptr<T> const_pointer_cast(const shared_ptr<U>& r) noexcept;
const_cast<T*>(r.get())
const_cast<T*>((U*)0)
shall be well formed.r
is empty, an empty shared_ptr<T>
; otherwise, a shared_ptr<T>
object that stores const_cast<T*>(r.get())
and shares ownership with r
.shared_ptr<T>(r, const_cast<typename shared_ptr<T>::element_type*>(r.get()))
.w.get() == const_cast<T*>(r.get())
and w.use_count() == r.use_count()
, where w
is the return value.std::weak_ptr
Make the following change in
namespace std {
template<class T> class weak_ptr {
public:
typedef Ttypename remove_extent<T>::type element_type;
...
Make the following change in
weak_ptr(const weak_ptr& r) noexcept; template<class Y> weak_ptr(const weak_ptr<Y>& r) noexcept; template<class Y> weak_ptr(const shared_ptr<Y>& r) noexcept;
Y*
is T*
.r
is empty, constructs an empty weak_ptr
object; otherwise, constructs a weak_ptr
object that shares ownership with r
and stores a copy of the pointer stored in r
.use_count() == r.use_count()
.std::function
In
typedef experimental::erased_type allocator_type;
experimental::pmr::memory_resource* get_memory_resource();
In
When afunction
constructor that takes a first argument of typeallocator_arg_t
is invoked, the second argument is treated as a type-erased allocator (). 8.3 shall have a type that conforms to the requirements for Allocator (Table 17.6.3.5). A copy of the allocator argument is used to allocate memory, if necessary, for the internal data structures of the constructed function object.If the constructor moves or makes a copy of a function object (including an instance of thefunction
class template), then that move or copy is performed by using-allocator construction with allocatorget_memory_resource()
.
In
function& operator=(const function& f);
function(allocator_arg, get_memory_resource(), f).swap(*this);
*this
function& operator=(function&& f);
*this
with the target of f
.
function(allocator_arg, get_memory_resource(), std::move(f)).swap(*this);
*this
function& operator=(nullptr_t);
*this != NULL
, destroys the target of this
.!(*this)
.*this
template<class F> function& operator=(F&& f);
function(allocator_arg, get_memory_resource(), std::forward<F>(f)).swap(*this);
*this
template<class F> function& operator=(reference_wrapper<F> f) noexcept;
*this
In
void swap(function& other) noexcept;
this->get_memory_resource() == other->get_memory_resource()
.std::common_type
In common_type::type
in paragraph 3 is removed and replaced with:
For the
common_type
trait applied to a parameter packT
of types, the membertype
shall be either defined or not present as follows:
- If
sizeof...(T)
is zero, there shall be no membertype
.- If
sizeof...(T)
is one, letT0
denote the sole type comprisingT
. The member typedeftype
shall denote the same type asdecay_t<T0>
.- If
sizeof...(T)
is greater than one, letT1
,T2
, andR
respectively denote the first, second, and (pack of) remaining types comprisingT
.[ Note: Finally, letsizeof...(R)
may be zero. — end note ]C
denote the type, if any, of an unevaluated conditional expression () whose first operand is an arbitrary value of type C++14 §5.16 bool
, whose second operand is an xvalue of typeT1
, and whose third operand is an xvalue of typeT2
. If there is such a typeC
, the member typedeftype
shall denote the same type, if any, ascommon_type_t<C,R...>
. Otherwise, there shall be no membertype
.
std::iterator_traits
In iterator_traits
is changed as follows:
The template
iterator_traits<Iterator>
is defined asshall have the following as publicly accessible members, and have no other members, if and only ifIterator
has valid () member types C++14 §14.8.2 difference_type
,value_type
,pointer
,reference
, anditerator_category
; otherwise, the template shall have no members:
namespace std { template<class Iterator> struct iterator_traits {typedef typename Iterator::difference_type difference_type; typedef typename Iterator::value_type value_type; typedef typename Iterator::pointer pointer; typedef typename Iterator::reference reference; typedef typename Iterator::iterator_category iterator_category;}; }
std::promise
In promise
:
typedef experimental::erased_type allocator_type;
experimental::pmr::memory_resource* get_memory_resource();
and the following paragraph is inserted before the first (introductory) paragraph of the section.
When a promise constructor that takes a first argument of type allocator_arg_t is invoked, the second argument is treated as a type-erased allocator (). 8.3
std::packaged_task
In packaged_task
:
typedef experimental::erased_type allocator_type;
experimental::pmr::memory_resource* get_memory_resource();
and the following paragraph is inserted before the first (introductory) paragraph of the section.
When a packaged_task constructor that takes a first argument of type allocator_arg_t is invoked, the second argument is treated as a type-erased allocator (). 8.3
<experimental/utility>
synopsis#include <utility>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
3.1.2 , erased-type placeholder
struct erased_type { };
}
}
}
erased_type
struct erased_type { };
The erased_type
struct
is an empty struct
that serves as a placeholder for a type T
in situations where the actual type T
is determined at runtime.
For example, the nested type, allocator_type
, is an alias for erased_type
in classes that use type-erased allocators (see
#include <tuple>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.4.2.5 , tuple helper classes
template <class T> constexpr size_t tuple_size_v
= tuple_size<T>::value;
// 3.2.2, Calling a function with a tuple of arguments
template <class F, class Tuple>
constexpr decltype(auto) apply(F&& f, Tuple&& t);
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
tuple
of argumentstemplate <class F, class Tuple>
constexpr decltype(auto) apply(F&& f, Tuple&& t);
Given the exposition only function
template <class F, class Tuple, size_t... I>
constexpr decltype(auto) apply_impl( // exposition only
F&& f, Tuple&& t, index_sequence<I...>) {
return std::forward<F>(f)(std::get<I>(std::forward<Tuple>(t))...);
}
Equivalent to
return apply_impl(std::forward<F>(f), std::forward<Tuple>(t),
make_index_sequence<tuple_size<decay_t<Tuple>>::value>{});
#include <type_traits>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.10.4.1 , primary type categories
template <class T> constexpr bool is_void_v
= is_void<T>::value;
template <class T> constexpr bool is_null_pointer_v
= is_null_pointer<T>::value;
template <class T> constexpr bool is_integral_v
= is_integral<T>::value;
template <class T> constexpr bool is_floating_point_v
= is_floating_point<T>::value;
template <class T> constexpr bool is_array_v
= is_array<T>::value;
template <class T> constexpr bool is_pointer_v
= is_pointer<T>::value;
template <class T> constexpr bool is_lvalue_reference_v
= is_lvalue_reference<T>::value;
template <class T> constexpr bool is_rvalue_reference_v
= is_rvalue_reference<T>::value;
template <class T> constexpr bool is_member_object_pointer_v
= is_member_object_pointer<T>::value;
template <class T> constexpr bool is_member_function_pointer_v
= is_member_function_pointer<T>::value;
template <class T> constexpr bool is_enum_v
= is_enum<T>::value;
template <class T> constexpr bool is_union_v
= is_union<T>::value;
template <class T> constexpr bool is_class_v
= is_class<T>::value;
template <class T> constexpr bool is_function_v
= is_function<T>::value;
// See C++14 §20.10.4.2 , composite type categories
template <class T> constexpr bool is_reference_v
= is_reference<T>::value;
template <class T> constexpr bool is_arithmetic_v
= is_arithmetic<T>::value;
template <class T> constexpr bool is_fundamental_v
= is_fundamental<T>::value;
template <class T> constexpr bool is_object_v
= is_object<T>::value;
template <class T> constexpr bool is_scalar_v
= is_scalar<T>::value;
template <class T> constexpr bool is_compound_v
= is_compound<T>::value;
template <class T> constexpr bool is_member_pointer_v
= is_member_pointer<T>::value;
// See C++14 §20.10.4.3 , type properties
template <class T> constexpr bool is_const_v
= is_const<T>::value;
template <class T> constexpr bool is_volatile_v
= is_volatile<T>::value;
template <class T> constexpr bool is_trivial_v
= is_trivial<T>::value;
template <class T> constexpr bool is_trivially_copyable_v
= is_trivially_copyable<T>::value;
template <class T> constexpr bool is_standard_layout_v
= is_standard_layout<T>::value;
template <class T> constexpr bool is_pod_v
= is_pod<T>::value;
template <class T> constexpr bool is_literal_type_v
= is_literal_type<T>::value;
template <class T> constexpr bool is_empty_v
= is_empty<T>::value;
template <class T> constexpr bool is_polymorphic_v
= is_polymorphic<T>::value;
template <class T> constexpr bool is_abstract_v
= is_abstract<T>::value;
template <class T> constexpr bool is_final_v
= is_final<T>::value;
template <class T> constexpr bool is_signed_v
= is_signed<T>::value;
template <class T> constexpr bool is_unsigned_v
= is_unsigned<T>::value;
template <class T, class... Args> constexpr bool is_constructible_v
= is_constructible<T, Args...>::value;
template <class T> constexpr bool is_default_constructible_v
= is_default_constructible<T>::value;
template <class T> constexpr bool is_copy_constructible_v
= is_copy_constructible<T>::value;
template <class T> constexpr bool is_move_constructible_v
= is_move_constructible<T>::value;
template <class T, class U> constexpr bool is_assignable_v
= is_assignable<T, U>::value;
template <class T> constexpr bool is_copy_assignable_v
= is_copy_assignable<T>::value;
template <class T> constexpr bool is_move_assignable_v
= is_move_assignable<T>::value;
template <class T> constexpr bool is_destructible_v
= is_destructible<T>::value;
template <class T, class... Args> constexpr bool is_trivially_constructible_v
= is_trivially_constructible<T, Args...>::value;
template <class T> constexpr bool is_trivially_default_constructible_v
= is_trivially_default_constructible<T>::value;
template <class T> constexpr bool is_trivially_copy_constructible_v
= is_trivially_copy_constructible<T>::value;
template <class T> constexpr bool is_trivially_move_constructible_v
= is_trivially_move_constructible<T>::value;
template <class T, class U> constexpr bool is_trivially_assignable_v
= is_trivially_assignable<T, U>::value;
template <class T> constexpr bool is_trivially_copy_assignable_v
= is_trivially_copy_assignable<T>::value;
template <class T> constexpr bool is_trivially_move_assignable_v
= is_trivially_move_assignable<T>::value;
template <class T> constexpr bool is_trivially_destructible_v
= is_trivially_destructible<T>::value;
template <class T, class... Args> constexpr bool is_nothrow_constructible_v
= is_nothrow_constructible<T, Args...>::value;
template <class T> constexpr bool is_nothrow_default_constructible_v
= is_nothrow_default_constructible<T>::value;
template <class T> constexpr bool is_nothrow_copy_constructible_v
= is_nothrow_copy_constructible<T>::value;
template <class T> constexpr bool is_nothrow_move_constructible_v
= is_nothrow_move_constructible<T>::value;
template <class T, class U> constexpr bool is_nothrow_assignable_v
= is_nothrow_assignable<T, U>::value;
template <class T> constexpr bool is_nothrow_copy_assignable_v
= is_nothrow_copy_assignable<T>::value;
template <class T> constexpr bool is_nothrow_move_assignable_v
= is_nothrow_move_assignable<T>::value;
template <class T> constexpr bool is_nothrow_destructible_v
= is_nothrow_destructible<T>::value;
template <class T> constexpr bool has_virtual_destructor_v
= has_virtual_destructor<T>::value;
// See C++14 §20.10.5 , type property queries
template <class T> constexpr size_t alignment_of_v
= alignment_of<T>::value;
template <class T> constexpr size_t rank_v
= rank<T>::value;
template <class T, unsigned I = 0> constexpr size_t extent_v
= extent<T, I>::value;
// See C++14 §20.10.6 , type relations
template <class T, class U> constexpr bool is_same_v
= is_same<T, U>::value;
template <class Base, class Derived> constexpr bool is_base_of_v
= is_base_of<Base, Derived>::value;
template <class From, class To> constexpr bool is_convertible_v
= is_convertible<From, To>::value;
// 3.3.2, Other type transformations
template <class> class invocation_type; // not defined
template <class F, class... ArgTypes> class invocation_type<F(ArgTypes...)>;
template <class> class raw_invocation_type; // not defined
template <class F, class... ArgTypes> class raw_invocation_type<F(ArgTypes...)>;
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
This sub-clause contains templates that may be used to transform one type to another following some predefined rule.
Each of the templates in this subclause shall be a
Within this section, define the invocation parameters of INVOKE(f, t1, t2, ..., tN)
as follows,
in which T1
is the possibly cv-qualified type of t1
and U1
denotes T1&
if t1
is an lvalue
or T1&&
if t1
is an rvalue:
f
is a pointer to a member function of a class T
and t1
is an object of type T
or a reference to an object of type T
or a reference to an object of a type derived from T
,
the U1
followed by
the parameters of f
matched by t2
, ..., tN
.
f
is a pointer to a member function of a class T
and T1
is not one of the types described in the previous item,
the U1
followed by
the parameters of f
matched by t2
, ..., tN
.
N == 1
and f
is a pointer to member data of a class T
and t1
is an object of type T
or a reference to an object of type T
or a reference to an object of a type derived from T
,
the U1
.
N == 1
and f
is a pointer to member data of a class T
and T1
is not one of the types described in the previous item,
the U1
.
f
is a class object,
the t1
, ..., tN
of the best viable function (t1
, ..., tN
among the function call operators of f
.
f
matching t1
, ... tN
.
In all of the above cases,
if an argument tI
matches the ellipsis in the function's tI
.
S
is defined as
struct S {
int f(double const &) const;
void operator()(int, int);
void operator()(char const *, int i = 2, int j = 3);
void operator()(...);
};
INVOKE(&S::f, S(), 3.5)
are (S &&, double const &)
.INVOKE(S(), 1, 2)
are (int, int)
.INVOKE(S(), "abc", 5)
are (const char *, int)
.
The defaulted parameter j
does not correspond to an argument.INVOKE(S(), locale(), 5)
are (locale, int)
.
Arguments corresponding to ellipsis maintain their typesTemplate | Condition | Comments |
---|---|---|
template <class Fn, class... ArgTypes>
struct raw_invocation_type<
|
Fn and all types in the parameter pack ArgTypes
shall be complete types, (possibly cv-qualified) void , or arrays of unknown bound.
|
If the expression INVOKE(declval<Fn>(), declval<ArgTypes>()...)
is well formed when treated as an unevaluated operand (type shall name the function type R(T1, T2, ...)
where R denotes result_of<Fn(ArgTypes...)>::type and
the types Ti are the INVOKE(declval<Fn>(), declval<ArgTypes>()...) ;
otherwise, there shall be no member type .
Access checking is performed as if in a context unrelated to Fn and ArgTypes .
Only the validity of the immediate context of the expression is considered.
|
template <class Fn, class... ArgTypes>
struct invocation_type<
|
Fn and all types in the parameter pack ArgTypes
shall be complete types, (possibly cv-qualified) void ,
or arrays of unknown bound.
|
If raw_invocation_type<
is the function type R(T1, T2, ...)
and Fn is a pointer to member type
and T1 is an rvalue reference,
then R(decay<T1>::type, T2, ...) .
Otherwise, raw_invocation_type< .
|
#include <ratio>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.11.5 , ratio comparison
template <class R1, class R2> constexpr bool ratio_equal_v
= ratio_equal<R1, R2>::value;
template <class R1, class R2> constexpr bool ratio_not_equal_v
= ratio_not_equal<R1, R2>::value;
template <class R1, class R2> constexpr bool ratio_less_v
= ratio_less<R1, R2>::value;
template <class R1, class R2> constexpr bool ratio_less_equal_v
= ratio_less_equal<R1, R2>::value;
template <class R1, class R2> constexpr bool ratio_greater_v
= ratio_greater<R1, R2>::value;
template <class R1, class R2> constexpr bool ratio_greater_equal_v
= ratio_greater_equal<R1, R2>::value;
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <chrono>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.12.4 , customization traits
template <class Rep> constexpr bool treat_as_floating_point_v
= treat_as_floating_point<Rep>::value;
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <system_error>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
template <class T> constexpr bool is_error_code_enum_v
= is_error_code_enum<T>::value;
template <class T> constexpr bool is_error_condition_enum_v
= is_error_condition_enum<T>::value;
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
<experimental/functional>
synopsis#include <functional>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.9.9 , Function object binders
template <class T> constexpr bool is_bind_expression_v
= is_bind_expression<T>::value;
template <class T> constexpr int is_placeholder_v
= is_placeholder<T>::value;
// 4.2, Searchers
template<class ForwardIterator, class BinaryPredicate = equal_to<>>
class default_searcher;
template<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
class boyer_moore_searcher;
template<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
class boyer_moore_horspool_searcher;
template<class ForwardIterator, class BinaryPredicate = equal_to<>>
default_searcher<ForwardIterator, BinaryPredicate>
make_default_searcher(ForwardIterator pat_first, ForwardIterator pat_last,
BinaryPredicate pred = BinaryPredicate());
template<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
boyer_moore_searcher<RandomAccessIterator, Hash, BinaryPredicate>
make_boyer_moore_searcher(RandomAccessIterator pat_first, RandomAccessIterator pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
template<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
boyer_moore_horspool_searcher<RandomAccessIterator, Hash, BinaryPredicate>
make_boyer_moore_horspool_searcher(RandomAccessIterator pat_first, RandomAccessIterator pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
This sub-clause provides function object types (pat_first
, pat_last
)first
, last
)
Each specialization of a class template specified in this sub-clause CopyConstructible
and CopyAssignable
requirements.
Template parameters named ForwardIterator
, ForwardIterator1
, ForwardIterator2
, RandomAccessIterator
, RandomAccessIterator1
, RandomAccessIterator2
, and BinaryPredicate
of templates specified in this sub-clause Hash
shall meet the requirements as specified in
default_searcher
template<class ForwardIterator1, class BinaryPredicate = equal_to<>>
class default_searcher {
public:
default_searcher(ForwardIterator1 pat_first, ForwardIterator1 pat_last,
BinaryPredicate pred = BinaryPredicate());
template<class ForwardIterator2>
ForwardIterator2
operator()(ForwardIterator2 first, ForwardIterator2 last) const;
private:
ForwardIterator1 pat_first_; // exposition only
ForwardIterator1 pat_last_; // exposition only
BinaryPredicate pred_; // exposition only
};
default_searcher(ForwardIterator pat_first, ForwardIterator pat_last,
BinaryPredicate pred = BinaryPredicate());
default_searcher
object, initializing pat_first_
with pat_first
, pat_last_
with pat_last
, and pred_
with pred
.BinaryPredicate
or ForwardIterator1
.template<class ForwardIterator2>
ForwardIterator2 operator()(ForwardIterator2 first, ForwardIterator2 last) const;
std::search(first, last, pat_first_, pat_last_, pred_)
.default_searcher
creation functionstemplate<class ForwardIterator, class BinaryPredicate = equal_to<>>
default_searcher<ForwardIterator, BinaryPredicate>
make_default_searcher(ForwardIterator pat_first, ForwardIterator pat_last,
BinaryPredicate pred = BinaryPredicate());
default_searcher<ForwardIterator, BinaryPredicate>(pat_first, pat_last, pred)
.boyer_moore_searcher
template<class RandomAccessIterator1,
class Hash = hash<typename iterator_traits<RandomAccessIterator1>::value_type>,
class BinaryPredicate = equal_to<>>
class boyer_moore_searcher {
public:
boyer_moore_searcher(RandomAccessIterator1 pat_first, RandomAccessIterator1 pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
template<class RandomAccessIterator2>
RandomAccessIterator2
operator()(RandomAccessIterator2 first, RandomAccessIterator2 last) const;
private:
RandomAccessIterator1 pat_first_; // exposition only
RandomAccessIterator1 pat_last_; // exposition only
Hash hash_; // exposition only
BinaryPredicate pred_; // exposition only
};
boyer_moore_searcher(RandomAccessIterator1 pat_first, RandomAccessIterator1 pat_last,
Hash hf = Hash(),
BinaryPredicate pred = BinaryPredicate());
RandomAccessIterator1
shall meet the DefaultConstructible
, CopyConstructible
, and CopyAssignable
requirements.A
and B
of the type iterator_traits<RandomAccessIterator1>::value_type
, if pred(A,B)==true
, then hf(A)==hf(B)
shall be true.boyer_moore_searcher
object, initializing pat_first_
with pat_first
, pat_last_
with pat_last
, hash_
with hf
, and pred_
with pred
.BinaryPredicate
or RandomAccessIterator1
,
or by the default constructor, copy constructor, or the copy assignment operator of the value type of RandomAccessIterator1
,
or the copy constructor or operator()
of Hash
.
May throw bad_alloc
if cannot allocate additional memory for internal data structures needed.template<class RandomAccessIterator2>
RandomAccessIterator2 operator()(RandomAccessIterator2 first, RandomAccessIterator2 last) const;
RandomAccessIterator1
and RandomAccessIterator2
shall have the same value type.i
in the range first
, last - (pat_last_ - pat_first_)
)n
less than pat_last_ - pat_first_
the following condition holds:
pred(*(i + n), *(pat_first_ + n)) != false
.
Returns first
if pat_first_
, pat_last_
)last
if no such iterator is found.
(last - first) * (pat_last_ - pat_first_)
applications of the predicate.boyer_moore_searcher
creation functionstemplate<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
boyer_moore_searcher<RandomAccessIterator, Hash, BinaryPredicate>
make_boyer_moore_searcher(RandomAccessIterator pat_first, RandomAccessIterator pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
boyer_moore_searcher<RandomAccessIterator, Hash, BinaryPredicate>(pat_first, pat_last, hf, pred)
.boyer_moore_horspool_searcher
template<class RandomAccessIterator1,
class Hash = hash<typename iterator_traits<RandomAccessIterator1>::value_type>,
class BinaryPredicate = equal_to<>>
class boyer_moore_horspool_searcher {
public:
boyer_moore_horspool_searcher(RandomAccessIterator1 pat_first, RandomAccessIterator1 pat_last,
BinaryPredicate pred = BinaryPredicate());
template<class RandomAccessIterator2>
RandomAccessIterator2
operator()(RandomAccessIterator2 first, RandomAccessIterator2 last) const;
private:
RandomAccessIterator1 pat_first_; // exposition only
RandomAccessIterator1 pat_last_; // exposition only
Hash hash_; // exposition only
BinaryPredicate pred_; // exposition only
};
boyer_moore_horspool_searcher(RandomAccessIterator1 pat_first, RandomAccessIterator1 pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
RandomAccessIterator1
shall meet the DefaultConstructible
, CopyConstructible
, and CopyAssignable
requirements.A
and B
of the type iterator_traits<RandomAccessIterator1>::value_type
,
if pred(A,B)==true
, then hf(A)==hf(B)
shall be true.boyer_moore_horspool_searcher
object, initializing pat_first_
with pat_first
,
pat_last_
with pat_last
, hash_
with hf
, and pred_
with pred
.BinaryPredicate
or RandomAccessIterator1
,
or by the default constructor, copy constructor, or the copy assignment operator of the value type of RandomAccessIterator1
or the copy constructor or operator()
of Hash
.
May throw bad_alloc
if the system cannot allocate additional memory for internal data structures needed.
template<class RandomAccessIterator2>
RandomAccessIterator2 operator()(RandomAccessIterator2 first, RandomAccessIterator2 last) const;
RandomAccessIterator1
and RandomAccessIterator2
shall have the same value type.i
in the range first
, last - (pat_last_ - pat_first_)
)n
less than pat_last_ - pat_first_
the following condition holds:
pred(*(i + n), *(pat_first_ + n)) != false
.
Returns first
if pat_first_
, pat_last_
)last
if no such iterator is found.
(last - first) * (pat_last_ - pat_first_)
applications of the predicate.boyer_moore_horspool_searcher
creation functionstemplate<class RandomAccessIterator,
class Hash = hash<typename iterator_traits<RandomAccessIterator>::value_type>,
class BinaryPredicate = equal_to<>>
boyer_moore_searcher_horspool<RandomAccessIterator, Hash, BinaryPredicate>
make_boyer_moore_horspool_searcher(RandomAccessIterator pat_first, RandomAccessIterator pat_last,
Hash hf = Hash(), BinaryPredicate pred = BinaryPredicate());
boyer_moore_horspool_searcher<RandomAccessIterator, Hash, BinaryPredicate>(pat_first, pat_last, hf, pred)
.This subclause describes class template optional
that represents optional objects. An optional object for object types is an object that contains the storage for another object and manages the lifetime of this contained object, if any. The contained object may be initialized after the optional object has been initialized, and may be destroyed before the optional object has been destroyed. The initialization state of the contained object is tracked by the optional object.
<experimental/optional>
synopsisnamespace std { namespace experimental { inline namespace fundamentals_v1 {template <class T> class optional; // 5.4, optional for object types struct in_place_t{}; constexpr in_place_t in_place{}; // 5.5, In-place construction struct nullopt_t{see below}; constexpr nullopt_t nullopt(unspecified); // 5.6, Disengaged state indicator class bad_optional_access; // 5.7, Class bad_optional_access template <class T> constexpr bool operator==(const optional<T>&, const optional<T>&); template <class T> constexpr bool operator!=(const optional<T>&, const optional<T>&); template <class T> constexpr bool operator<(const optional<T>&, const optional<T>&); template <class T> constexpr bool operator>(const optional<T>&, const optional<T>&); template <class T> constexpr bool operator<=(const optional<T>&, const optional<T>&); template <class T> constexpr bool operator>=(const optional<T>&, const optional<T>&); // 5.8, Relational operators template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; template <class T> constexpr bool operator<(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator<(nullopt_t, const optional<T>&) noexcept; template <class T> constexpr bool operator<=(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept; template <class T> constexpr bool operator>(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator>(nullopt_t, const optional<T>&) noexcept; template <class T> constexpr bool operator>=(const optional<T>&, nullopt_t) noexcept; template <class T> constexpr bool operator>=(nullopt_t, const optional<T>&) noexcept; // 5.9, Comparison with nullopt template <class T> constexpr bool operator==(const optional<T>&, const T&); template <class T> constexpr bool operator==(const T&, const optional<T>&); template <class T> constexpr bool operator!=(const optional<T>&, const T&); template <class T> constexpr bool operator!=(const T&, const optional<T>&); template <class T> constexpr bool operator<(const optional<T>&, const T&); template <class T> constexpr bool operator<(const T&, const optional<T>&); template <class T> constexpr bool operator<=(const optional<T>&, const T&); template <class T> constexpr bool operator<=(const T&, const optional<T>&); template <class T> constexpr bool operator>(const optional<T>&, const T&); template <class T> constexpr bool operator>(const T&, const optional<T>&); template <class T> constexpr bool operator>=(const optional<T>&, const T&); template <class T> constexpr bool operator>=(const T&, const optional<T>&); // 5.10, Comparison with T template <class T> void swap(optional<T>&, optional<T>&) noexcept(see below); template <class T> constexpr optional<see below> make_optional(T&&); } // namespace fundamentals_v1 } // namespace experimental // 5.11, Specialized algorithms template <class T> struct hash; template <class T> struct hash<experimental::optional<T>>; } // namespace std // 5.12, Hash support
A program that necessitates the instantiation of template optional
for a reference type, or for possibly cv-qualified types in_place_t
or nullopt_t
is ill-formed.
An instance of optional<T>
is said to be disengaged if:
nullopt_t
or with a disengaged optional object of type optional<T>
; ornullopt_t
or a disengaged optional object of type optional<T>
is assigned to it.An instance of optional<T>
is said to be engaged if it is not disengaged.
optional
for object typestemplate <class T> class optional { public: typedef T value_type;constexpr optional() noexcept; constexpr optional(nullopt_t) noexcept; optional(const optional&); optional(optional&&) noexcept(see below); constexpr optional(const T&); constexpr optional(T&&); template <class... Args> constexpr explicit optional(in_place_t, Args&&...); template <class U, class... Args> constexpr explicit optional(in_place_t, initializer_list<U>, Args&&...); // 5.4.1, Constructors ~optional(); // 5.4.2, Destructor optional& operator=(nullopt_t) noexcept; optional& operator=(const optional&); optional& operator=(optional&&) noexcept(see below); template <class U> optional& operator=(U&&); template <class... Args> void emplace(Args&&...); template <class U, class... Args> void emplace(initializer_list<U>, Args&&...); // 5.4.3, Assignment void swap(optional&) noexcept(see below); // 5.4.4, Swap constexpr T const* operator ->() const; T* operator ->(); constexpr T const& operator *() const; T& operator *(); constexpr explicit operator bool() const noexcept; constexpr T const& value() const; T& value(); template <class U> constexpr T value_or(U&&) const&; template <class U> T value_or(U&&) &&; private: bool init; // exposition only T* val; // exposition only }; // 5.4.5, Observers
Engaged instances of optional<T>
where T
is of object type shall contain a value of type T
within its own storage. This value is referred to as the contained value of the optional object. Implementations are not permitted to use additional storage, such as dynamic memory, to allocate its contained value. The contained value shall be allocated in a region of the optional<T>
storage suitably aligned for the type T
.
Members init
and val
are provided for exposition only.
Implementations need not provide those members.
init
indicates whether the optional
object's contained value has been initialized (and not yet destroyed);
when init
is true,
val
points to the contained value.
T
shall be an object type and shall satisfy the requirements of Destructible
(Table 24).
constexpr optional() noexcept; constexpr optional(nullopt_t) noexcept;
*this
is disengaged.T
these constructors shall be constexpr
constructors (optional(const optional<T>& rhs);
is_copy_constructible<T>::value
is true
.rhs
is engaged initializes the contained value as if
direct-non-list-initializing an object of type T
with the expression *rhs
.bool(rhs) == bool(*this)
.T
.optional(optional<T>&& rhs) noexcept(see below);
is_move_constructible<T>::value
is true
.rhs
is engaged initializes the contained value as if
direct-non-list-initializing an object of type T
with the expression std::move(*rhs)
.
bool(rhs)
is unchanged.bool(rhs) == bool(*this)
.T
.noexcept
is equivalent to:is_nothrow_move_constructible<T>::value
constexpr optional(const T& v);
is_copy_constructible<T>::value
is true
.T
with the expression v
.*this
is engaged.T
.T
's selected constructor is a constexpr
constructor, this constructor shall be a constexpr
constructor.constexpr optional(T&& v);
is_move_constructible<T>::value
is true
.T
with the expression std::move(v)
.*this
is engaged.T
.T
's selected constructor is a constexpr
constructor, this constructor shall be a constexpr
constructor.template <class... Args> constexpr explicit optional(in_place_t, Args&&... args);
is_constructible<T, Args&&...>::value
is true
.T
with the arguments std::forward<Args>(args)...
.*this
is engaged.T
.T
's constructor selected for the initialization is a constexpr
constructor, this constructor shall be a constexpr
constructor.template <class U, class... Args> constexpr explicit optional(in_place_t, initializer_list<U> il, Args&&... args);
is_constructible<T, initializer_list<U>&, Args&&...>::value
is true
.T
with the arguments il, std::forward<Args>(args)...
.*this
is engaged.T
.is_constructible<T, initializer_list<U>&, Args&&...>::value
is true
.T
's constructor selected for the initialization is a constexpr
constructor, this constructor shall be a constexpr
constructor.~optional();
is_trivially_destructible<T>::value != true
and *this
is engaged, calls val->T::~T()
.is_trivially_destructible<T>::value == true
then this destructor shall be a trivial destructor.optional<T>& operator=(nullopt_t) noexcept;
*this
is engaged calls val->T::~T()
to destroy the contained value; otherwise no effect.*this
.*this
is disengaged.optional<T>& operator=(const optional<T>& rhs);
is_copy_constructible<T>::value
is true
and is_copy_assignable<T>::value
is true
.*this
is disengaged and rhs
is disengaged, no effect, otherwise*this
is engaged and rhs
is disengaged, destroys the contained value by calling val->T::~T()
, otherwise*this
is disengaged and rhs
is engaged, initializes the contained value as if direct-non-list-initializing an object of type T
with *rhs
, otherwise*this
and rhs
are engaged) assigns *rhs
to the contained value.*this
.bool(rhs) == bool(*this)
.init
and rhs.init
remain unchanged.
If an exception is thrown during the call to T
's copy constructor, no effect.
If an exception is thrown during the call to T
's copy assignment,
the state of its contained value is as defined by the exception safety guarantee of T
's copy assignment.
optional<T>& operator=(optional<T>&& rhs) noexcept(see below);
is_move_constructible<T>::value
is true
and is_move_assignable<T>::value
is true
.*this
is disengaged and rhs
is disengaged, no effect, otherwise*this
is engaged and rhs
is disengaged, destroys the contained value by calling val->T::~T()
, otherwise*this
is disengaged and rhs
is engaged, initializes the contained value as if direct-non-list-initializing an object of type T
with std::move(*rhs)
, otherwise*this
and rhs
are engaged) assigns std::move(*rhs)
to the contained value.*this
.bool(rhs) == bool(*this)
.noexcept
is equivalent to: is_nothrow_move_assignable<T>::value && is_nothrow_move_constructible<T>::value
init
and rhs.init
remain unchanged.
If an exception is thrown during the call to T
's move constructor,
the state of *rhs.val
is determined by the exception safety guarantee of T
's move constructor.
If an exception is thrown during the call to T
's move assignment,
the state of *val
and *rhs.val
is determined by the exception safety guarantee of T
's move assignment.
template <class U> optional<T>& operator=(U&& v);
is_constructible<T, U>::value
is true
and is_assignable<T&, U>::value
is true
.*this
is engaged assigns std::forward<U>(v)
to the contained value; otherwise initializes the contained value as if direct-non-list-initializing object of type T
with std::forward<U>(v)
.*this
.*this
is engaged.init
remains unchanged. If an exception is thrown during the call to T
's constructor, the state of v
is determined by the exception safety guarantee of T
's constructor. If an exception is thrown during the call to T
's assignment, the state of *val
and v
is determined by the exception safety guarantee of T
's assignment.is_same<typename decay<U>::type, T>::value
is true
.T
== U
is to guarantee that assignment of the form o = {}
is unambiguous.template <class... Args> void emplace(Args&&... args);
is_constructible<T, Args&&...>::value
is true
.*this = nullopt
. Then initializes the contained value as if constructing an object of type T
with the arguments std::forward<Args>(args)...
.*this
is engaged.T
.T
's constructor, *this
is disengaged, and the previous *val
(if any) has been destroyed.template <class U, class... Args> void emplace(initializer_list<U> il, Args&&... args);
is_constructible<T, initializer_list<U>&, Args&&...>::value
is true
.*this = nullopt
. Then initializes the contained value as if constructing an object of type T
with the arguments il, std::forward<Args>(args)...
.*this
is engaged.T
.T
's constructor, *this
is disengaged, and the previous *val
(if any) has been destroyed.is_constructible<T, initializer_list<U>&, Args&&...>::value
is true
.void swap(optional<T>& rhs) noexcept(see below);
is_move_constructible<T>::value
is true
.*this
is disengaged and rhs
is disengaged, no effect, otherwise*this
is engaged and rhs
is disengaged, initializes the contained value of rhs
by direct-initialization with std::move(*(*this))
, followed by val->T::~T(), swap(init, rhs.init)
, otherwise*this
is disengaged and rhs
is engaged, initializes the contained value of *this
by direct-initialization with std::move(*rhs)
, followed by rhs.val->T::~T(), swap(init, rhs.init)
, otherwise*this
and rhs
are engaged) calls swap(*(*this), *rhs)
.noexcept
is equivalent to: is_nothrow_move_constructible<T>::value &&noexcept(swap(declval<T&>(), declval<T&>()))
init
and rhs.init
remain unchanged.
If an exception is thrown during the call to function swap
the state of *val
and *rhs.val
is determined by the exception safety guarantee of swap
for lvalues of T
.
If an exception is thrown during the call to T
's move constructor,
the state of *val
and *rhs.val
is determined by the exception safety guarantee of T
's move constructor.
constexpr T const* operator->() const; T* operator->();
*this
is engaged.val
.T
is a user-defined type with overloaded unary operator&
, the first function shall be a constexpr
function.constexpr T const& operator*() const; T& operator*();
*this
is engaged.*val
.constexpr
function.constexpr explicit operator bool() noexcept;
init
.constexpr
function.constexpr T const& value() const; T& value();
*val
, if bool(*this)
.bad_optional_access
if !*this
.constexpr
function.template <class U> constexpr T value_or(U&& v) const&;
is_copy_constructible<T>::value
is true
and is_convertible<U&&, T>::value
is true
.bool(*this) ? **this : static_cast<T>(std::forward<U>(v))
.T
.init == true
and exception is thrown during the call to T
's constructor, the value of init
and v
remains unchanged and the state of *val
is determined by the exception safety guarantee of the selected constructor of T
. Otherwise, when exception is thrown during the call to T
's constructor, the value of *this
remains unchanged and the state of v
is determined by the exception safety guarantee of the selected constructor of T
.T
which could be selected are constexpr
constructors,
this function shall be a constexpr
function.template <class U> T value_or(U&& v) &&;
is_move_constructible<T>::value
is true
and is_convertible<U&&, T>::value
is true
.bool(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(v))
.T
.init == true
and exception is thrown during the call to T
's constructor, the value of init
and v
remains unchanged and the state of *val
is determined by the exception safety guarantee of the T
's constructor. Otherwise, when exception is thrown during the call to T
's constructor, the value of *this
remains unchanged and the state of v
is determined by the exception safety guarantee of the selected constructor of T
.struct in_place_t{}; constexpr in_place_t in_place{};
The struct in_place_t
is an empty structure type used as a unique type to disambiguate constructor and function overloading. Specifically, optional<T>
has a constructor with in_place_t
as the first argument followed by an argument pack; this indicates that T
should be constructed in-place (as if by a call to placement new expression) with the forwarded argument pack as parameters.
struct nullopt_t{see below}; constexpr nullopt_t nullopt(unspecified);
The struct nullopt_t
is an empty structure type used as a unique type to indicate a disengaged state for optional
objects. In particular, optional<T>
has a constructor with nullopt_t
as single argument; this indicates that a disengaged optional object shall be constructed.
Type nullopt_t
shall not have a default constructor. It shall be a literal type. Constant nullopt
shall be initialized with an argument of literal type.
bad_optional_access
class bad_optional_access : public logic_error { public: explicit bad_optional_access(const string& what_arg); explicit bad_optional_access(const char* what_arg); };
The class bad_optional_access
defines the type of objects thrown as exceptions to report the situation where an attempt is made to access the value of a disengaged optional object.
bad_optional_access(const string& what_arg);
bad_optional_access
.strcmp(what(), what_arg.c_str()) == 0
.bad_optional_access(const char* what_arg);
bad_optional_access
.strcmp(what(), what_arg) == 0
.template <class T> constexpr bool operator==(const optional<T>& x, const optional<T>& y);
T
shall meet the requirements of EqualityComparable
.bool(x) != bool(y)
, false
; otherwise if bool(x) == false
, true
; otherwise *x == *y
.*x == *y
is a core constant expression, shall be constexpr
functions.template <class T> constexpr bool operator!=(const optional<T>& x, const optional<T>& y);
!(x == y)
.template <class T> constexpr bool operator<(const optional<T>& x, const optional<T>& y);
*x < *y
shall be well-formed
and its result shall be convertible to bool
.(!y)
, false
;
otherwise, if (!x)
, true
;
otherwise *x < *y
.*x < *y
is a core constant expression,
shall be constexpr
functions.template <class T> constexpr bool operator>(const optional<T>& x, const optional<T>& y);
y < x
.template <class T> constexpr bool operator<=(const optional<T>& x, const optional<T>& y);
!(y < x)
.template <class T> constexpr bool operator>=(const optional<T>& x, const optional<T>& y);
!(x < y)
.nullopt
template <class T> constexpr bool operator==(const optional<T>& x, nullopt_t) noexcept; template <class T> constexpr bool operator==(nullopt_t, const optional<T>& x) noexcept;
(!x)
.template <class T> constexpr bool operator!=(const optional<T>& x, nullopt_t) noexcept; template <class T> constexpr bool operator!=(nullopt_t, const optional<T>& x) noexcept;
bool(x)
.template <class T> constexpr bool operator<(const optional<T>& x, nullopt_t) noexcept;
false
.template <class T> constexpr bool operator<(nullopt_t, const optional<T>& x) noexcept;
bool(x)
.template <class T> constexpr bool operator<=(const optional<T>& x, nullopt_t) noexcept;
!x
.template <class T> constexpr bool operator<=(nullopt_t, const optional<T>& x) noexcept;
true
.template <class T> constexpr bool operator>(const optional<T>& x, nullopt_t) noexcept;
bool(x)
.template <class T> constexpr bool operator>(nullopt_t, const optional<T>& x) noexcept;
false
.template <class T> constexpr bool operator>=(const optional<T>& x, nullopt_t) noexcept;
true
.template <class T> constexpr bool operator>=(nullopt_t, const optional<T>& x) noexcept;
!x
.T
template <class T> constexpr bool operator==(const optional<T>& x, const T& v);
bool(x) ? *x == v : false
.template <class T> constexpr bool operator==(const T& v, const optional<T>& x);
bool(x) ? v == *x : false
.template <class T> constexpr bool operator!=(const optional<T>& x, const T& v);
bool(x) ? !(*x == v) : true
.template <class T> constexpr bool operator!=(const T& v, const optional<T>& x);
bool(x) ? !(v == *x) : true
.template <class T> constexpr bool operator<(const optional<T>& x, const T& v);
bool(x) ? *x < v : true
.template <class T> constexpr bool operator<(const T& v, const optional<T>& x);
bool(x) ? v < *x : false
.template <class T> constexpr bool operator>(const T& v, const optional<T>& x);
bool(x) ? *x < v : true
.template <class T> constexpr bool operator>(const optional<T>& x, const T& v);
bool(x) ? v < *x : false
.template <class T> constexpr bool operator>=(const optional<T>& x, const T& v);
!(x < v)
.template <class T> constexpr bool operator>=(const T& v, const optional<T>& x);
!(v < x)
.template <class T> constexpr bool operator<=(const optional<T>& x, const T& v);
!(x > v)
.template <class T> constexpr bool operator<=(const T& v, const optional<T>& x);
!(v > x)
.template <class T> void swap(optional<T>& x, optional<T>& y) noexcept(noexcept(x.swap(y)));
x.swap(y)
.template <class T> constexpr optional<typename decay<T>::type> make_optional(T&& v);
optional<typename decay<T>::type>(std::forward<T>(v))
.template <class T> struct hash<experimental::optional<T>>;
hash<T>
shall meet the requirements of class template hash
(hash<optional<T>>
shall meet the requirements of class template hash
.
For an object o
of type optional<T>
, if bool(o) == true
,
hash<optional<T>>()(o)
shall evaluate to the same value as hash<T>()(*o)
;
otherwise it evaluates to an unspecified value.any
This section describes components that C++ programs may use to perform operations on objects of a discriminated type.
5
is held strictly as an int
and is not implicitly convertible either to "5"
or to 5.0
.
This indifference to interpretation but awareness of type effectively allows safe, generic containers of single values, with no scope for surprises from ambiguous conversions.
— end note ]
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
class bad_any_cast : public bad_cast
{
public:
virtual const char* what() const noexcept;
};
class any
{
public:
// 6.3.1, any construct/destruct
any() noexcept;
any(const any& other);
any(any&& x) noexcept;
template <class ValueType>
any(ValueType&& value);
template <class Allocator>
any(allocator_arg_t, const Allocator& a) noexcept;
template <class Allocator, class ValueType>
any(allocator_arg_t, const Allocator& a, ValueType&& value);
template <class Allocator>
any(allocator_arg_t, const Allocator& a, const any& other);
template <class Allocator>
any(allocator_arg_t, const Allocator& a, any&& other) noexcept;
~any();
// 6.3.2, any assignments
any& operator=(const any& rhs);
any& operator=(any&& rhs) noexcept;
template <class ValueType>
any& operator=(ValueType&& rhs);
// 6.3.3, any modifiers
void clear() noexcept;
void swap(any& rhs) noexcept;
// 6.3.4, any observers
bool empty() const noexcept;
const type_info& type() const noexcept;
};
// 6.4, Non-member functions
void swap(any& x, any& y) noexcept;
template<class ValueType>
ValueType any_cast(const any& operand);
template<class ValueType>
ValueType any_cast(any& operand);
template<class ValueType>
ValueType any_cast(any&& operand);
template<class ValueType>
const ValueType* any_cast(const any* operand) noexcept;
template<class ValueType>
ValueType* any_cast(any* operand) noexcept;
}
}
}
bad_any_cast
Objects of type bad_any_cast
are thrown by a failed any_cast
.
any
An object of class any
stores an instance of any type that satisfies the constructor requirements or is empty,
and this is referred to as the state of the class any
object.
The stored instance is called the contained object.
Two states are equivalent if they are either both empty or if both are not empty and if the contained objects are equivalent.
The non-member any_cast
functions provide type-safe access to the contained object.
Implementations should avoid the use of dynamically allocated memory for a small contained object.
any
construct/destructany() noexcept;
this->empty()
any(const any& other);
any
with an equivalent state as other
.any(any&& other) noexcept;
any
with a state equivalent to the original state of other
.other
is left in a valid but otherwise unspecified state.template<class ValueType>
any(ValueType&& value);
Let T
be equal to decay<
.
T
shall satisfy the CopyConstructible
requirements.
If is_copy_constructible<T>::value
is false, the program is ill-formed.any
that contains an object of type T
direct-initialized with std::forward<ValueType>(value)
.decay<ValueType>::type
is the same type as any
.T
.template <class Allocator>
any(allocator_arg_t, const Allocator& a) noexcept; template <class Allocator, class ValueType>
any(allocator_arg_t, const Allocator& a, ValueType&& value); template <class Allocator>
any(allocator_arg_t, const Allocator& a, const any& other); template <class Allocator>
any(allocator_arg_t, const Allocator& a, any&& other) noexcept;
Allocator
shall meet the requirements for an Allocator (~any();
clear()
.any
assignmentsany& operator=(const any& rhs);
any(rhs).swap(*this)
.
No effects if an exception is thrown.*this
any& operator=(any&& rhs) noexcept;
any(std::move(rhs)).swap(*this)
.*this
*this
is equivalent to the original state of rhs
and rhs
is left in a valid but otherwise unspecified state.template<class ValueType>
any& operator=(ValueType&& rhs);
Let T
be equal to decay<
.
T
shall satisfy the CopyConstructible
requirements.
If is_copy_constructible<T>::value
is false, the program is ill-formed.tmp
of type any
that contains an object of type T
direct-initialized with std::forward<ValueType>(rhs)
, and tmp.swap(*this)
.
No effects if an exception is thrown.*this
decay<ValueType>::type
is the same type as any
.T
.any
modifiersvoid clear() noexcept;
empty() == true
.void swap(any& rhs) noexcept;
*this
and rhs
.any
observersbool empty() const noexcept;
true
if *this
has no contained object, otherwise false
.const type_info& type() const noexcept;
*this
has a contained object of type T, typeid(T)
;
otherwise typeid(void)
.void swap(any& x, any& y) noexcept;
x.swap(y)
.template<class ValueType>
ValueType any_cast(const any& operand); template<class ValueType>
ValueType any_cast(any& operand); template<class ValueType>
ValueType any_cast(any&& operand);
is_reference<ValueType>::value
is true or is_copy_constructible<ValueType>::value
is true.
Otherwise the program is ill-formed.*any_cast<typename add_const<typename remove_reference<ValueType>::type>::type >(&operand)
.
For the second and third forms, *any_cast<typename remove_reference<ValueType>::type>(&operand)
.bad_any_cast
if operand.type() != typeid(remove_reference<ValueType>::type)
.any x(5); // x holds int assert(any_cast<int>(x) == 5); // cast to value any_cast<int&>(x) = 10; // cast to reference assert(any_cast<int>(x) == 10); x = "Meow"; // x holds const char* assert(strcmp(any_cast<const char*>(x), "Meow") == 0); any_cast<const char*&>(x) = "Harry"; assert(strcmp(any_cast<const char*>(x), "Harry") == 0); x = string("Meow"); // x holds string string s, s2("Jane"); s = move(any_cast<string&>(x)); // move from any assert(s == "Meow"); any_cast<string&>(x) = move(s2); // move to any assert(any_cast<const string&>(x) == "Jane"); string cat("Meow"); const any y(cat); // const y holds string assert(any_cast<const string&>(y) == cat); any_cast<string&>(y); // error; cannot // any_cast away const— end example ]
template<class ValueType>
const ValueType* any_cast(const any* operand) noexcept; template<class ValueType>
ValueType* any_cast(any* operand) noexcept;
operand != nullptr && operand->type() == typeid(ValueType)
,
a pointer to the object contained by operand
,
otherwise nullptr
.bool is_string(const any& operand) { return any_cast<string>(&operand) != nullptr; }— end example ]
string_view
The class template basic_string_view
describes an object that can refer to a constant contiguous sequence of char-like (basic_string_view
object is designated by charT
.
const charT*
and std::basic_string<charT, ...>
to std::basic_string_view<charT, ...>
so that user code can accept just std::basic_string_view<charT>
as a non-templated parameter wherever a sequence of characters is expected.
User-defined types should define their own implicit conversions to std::basic_string_view
in order to interoperate with these functions.
— end note ]
The complexity of basic_string_view
member functions is O(1) unless otherwise specified.
<experimental/string_view>
synopsisnamespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// 7.2, Class template basic_string_view
template<class charT, class traits = char_traits<charT>>
class basic_string_view;
// 7.9, basic_string_view non-member comparison functions
template<class charT, class traits>
constexpr bool operator==(basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
template<class charT, class traits>
constexpr bool operator!=(basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
template<class charT, class traits>
constexpr bool operator< (basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
template<class charT, class traits>
constexpr bool operator> (basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
template<class charT, class traits>
constexpr bool operator<=(basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
template<class charT, class traits>
constexpr bool operator>=(basic_string_view<charT, traits> x,
basic_string_view<charT, traits> y) noexcept;
// see below, sufficient additional overloads of comparison functions
// 7.10, Inserters and extractors
template<class charT, class traits>
basic_ostream<charT, traits>&
operator<<(basic_ostream<charT, traits>& os,
basic_string_view<charT, traits> str);
// basic_string_view typedef names
typedef basic_string_view<char> string_view;
typedef basic_string_view<char16_t> u16string_view;
typedef basic_string_view<char32_t> u32string_view;
typedef basic_string_view<wchar_t> wstring_view;
} // namespace fundamentals_v1
} // namespace experimental
// 7.11, Hash support
template <class T> struct hash;
template <> struct hash<experimental::string_view>;
template <> struct hash<experimental::u16string_view>;
template <> struct hash<experimental::u32string_view>;
template <> struct hash<experimental::wstring_view>;
} // namespace std
The function templates defined in <experimental/string_view>
is included.
basic_string_view
namespace std {
namespace experimental {
namespace fundamentals_v1 {
template<class charT, class traits = char_traits<charT>>
class basic_string_view {
public:
// types
typedef traits traits_type;
typedef charT value_type;
typedef charT* pointer;
typedef const charT* const_pointer;
typedef charT& reference;
typedef const charT& const_reference;
typedef implementation-defined const_iterator; // See 7.4
typedef const_iterator iterator;2
typedef reverse_iterator<const_iterator> const_reverse_iterator;
typedef const_reverse_iterator reverse_iterator;
typedef size_t size_type;
typedef ptrdiff_t difference_type;
static constexpr size_type npos = size_type(-1);
// 7.3, basic_string_view constructors and assignment operators
constexpr basic_string_view() noexcept;
constexpr basic_string_view(const basic_string_view&) noexcept = default;
basic_string_view& operator=(const basic_string_view&) noexcept = default;
template<class Allocator>
basic_string_view(const basic_string<charT, traits, Allocator>& str) noexcept;
constexpr basic_string_view(const charT* str);
constexpr basic_string_view(const charT* str, size_type len);
// 7.4, basic_string_view iterator support
constexpr const_iterator begin() const noexcept;
constexpr const_iterator end() const noexcept;
constexpr const_iterator cbegin() const noexcept;
constexpr const_iterator cend() const noexcept;
const_reverse_iterator rbegin() const noexcept;
const_reverse_iterator rend() const noexcept;
const_reverse_iterator crbegin() const noexcept;
const_reverse_iterator crend() const noexcept;
// 7.5, basic_string_view capacity
constexpr size_type size() const noexcept;
constexpr size_type length() const noexcept;
constexpr size_type max_size() const noexcept;
constexpr bool empty() const noexcept;
// 7.6, basic_string_view element access
constexpr const_reference operator[](size_type pos) const;
constexpr const_reference at(size_type pos) const;
constexpr const_reference front() const;
constexpr const_reference back() const;
constexpr const_pointer data() const noexcept;
// 7.7, basic_string_view modifiers
constexpr void clear() noexcept;
constexpr void remove_prefix(size_type n);
constexpr void remove_suffix(size_type n);
constexpr void swap(basic_string_view& s) noexcept;
// 7.8, basic_string_view string operations
template<class Allocator>
explicit operator basic_string<charT, traits, Allocator>() const;
template<class Allocator = allocator<charT> >
basic_string<charT, traits, Allocator> to_string(
const Allocator& a = Allocator()) const;
size_type copy(charT* s, size_type n, size_type pos = 0) const;
constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
constexpr int compare(basic_string_view s) const noexcept;
constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
constexpr int compare(size_type pos1, size_type n1,
basic_string_view s, size_type pos2, size_type n2) const;
constexpr int compare(const charT* s) const;
constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
constexpr int compare(size_type pos1, size_type n1,
const charT* s, size_type n2) const;
constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
constexpr size_type find(charT c, size_type pos = 0) const noexcept;
constexpr size_type find(const charT* s, size_type pos, size_type n) const;
constexpr size_type find(const charT* s, size_type pos = 0) const;
constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
constexpr size_type rfind(const charT* s, size_type pos = npos) const;
constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
private:
const_pointer data_; // exposition only
size_type size_; // exposition only
};
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
In every specialization basic_string_view<charT, traits>
, the type traits
shall satisfy the character traits requirements (traits::char_type
shall name the same type as charT
.
basic_string_view
constructors and assignment operatorsconstexpr basic_string_view() noexcept;
basic_string_view
.size_ == 0
and data_ == nullptr
.template<class Allocator> basic_string_view(const basic_string<charT, traits, Allocator>& str) noexcept;
basic_string_view
, with the postconditions in Element | Value |
---|---|
data_ | str.data() |
size_ | str.size() |
constexpr basic_string_view(const charT* str);
str
, str + traits::length(str)
)basic_string_view
referring to the same string as str
, with the postconditions
in Element | Value |
---|---|
data_ | str |
size_ | traits::length(str) |
traits::length(str)
)constexpr basic_string_view(const charT* str, size_type len);
str
, str + len
)basic_string_view
, with the postconditions in Element | Value |
---|---|
data_ | str |
size_ | len |
basic_string_view
iterator supporttypedef implementation-defined const_iterator;
A constant random-access iterator type such that, for a const_iterator it
, if &*(it+N)
is valid, then it is equal to (&*it)+N
.
For a basic_string_view str
, any operation that invalidates a pointer in the range str.data()
, str.data()+str.size()
)str
's methods.
All requirements on container iterators (basic_string_view::const_iterator
as well.
constexpr const_iterator begin() const noexcept; constexpr const_iterator cbegin() const noexcept;
&*begin() == data_
if !empty()
,
or else an unspecified value such that begin()
, end()
)constexpr const_iterator end() const noexcept; constexpr const_iterator cend() const noexcept;
begin() + size()
const_reverse_iterator rbegin() const noexcept; const_reverse_iterator crbegin() const noexcept;
const_reverse_iterator(end())
.const_reverse_iterator rend() const noexcept; const_reverse_iterator crend() const noexcept;
const_reverse_iterator(begin())
.basic_string_view
capacityconstexpr size_type size() const noexcept;
size_
constexpr size_type length() const noexcept;
size_
.constexpr size_type max_size() const noexcept;
basic_string_view
.constexpr bool empty() const noexcept;
size_ == 0
.basic_string_view
element accessconstexpr const_reference operator[](size_type pos) const;
pos < size()
.data_[pos]
basic_string::operator[]
,
basic_string_view::operator[](size())
has undefined behavior instead of returning charT()
.
— end note ]
constexpr const_reference at(size_type pos) const;
out_of_range
if pos >= size()
.data_[pos]
.constexpr const_reference front() const;
!empty()
data_[0]
.constexpr const_reference back() const;
!empty()
data_[size() - 1]
.constexpr const_pointer data() const noexcept;
data_
basic_string::data()
and string literals,
data()
may return a pointer to a buffer that is not null-terminated.
Therefore it is typically a mistake to pass data()
to a routine that takes just a const charT*
and expects a null-terminated string.
— end note ]
basic_string_view
modifiersconstexpr void clear() noexcept;
*this = basic_string_view()
constexpr void remove_prefix(size_type n);
n <= size()
data_ += n; size_ -= n;
constexpr void remove_suffix(size_type n);
n <= size()
size_ -= n;
constexpr void swap(basic_string_view& s) noexcept;
*this
and s
.basic_string_view
string operationstemplate<class Allocator>
explicit3 operator basic_string<
charT, traits, Allocator>() const;
basic_string<charT, traits, Allocator>(begin(), end()).
size()
)to_string(allocator)
.
— end note ]
template<class Allocator = allocator<charT>>
basic_string<charT, traits, Allocator> to_string(
const Allocator& a = Allocator()) const;
basic_string<charT, traits, Allocator>(begin(), end(), a)
.size()
)size_type copy(charT* s, size_type n, size_type pos = 0) const;
Let rlen
be the smaller of n
and size() - pos
.
out_of_range
if pos > size()
.s
, s + rlen
)std::copy_n(begin() + pos, rlen, s).
rlen
.rlen
)constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
out_of_range
if pos > size()
.rlen
of the string to reference as the smaller of n
and size() - pos
.basic_string_view(data()+pos, rlen)
.constexpr int compare(basic_string_view str) const noexcept;
rlen
of the strings to compare as the smaller of size()
and str.size()
.
The function then compares the two strings by calling traits::compare(data(), str.data(), rlen)
.rlen
)Condition | Return Value |
---|---|
size() < str.size() | < 0 |
size() == str.size() | 0 |
size() > str.size() | > 0 |
constexpr int compare(size_type pos1, size_type n1, basic_string_view str) const;
substr(pos1, n1).compare(str)
.constexpr int compare(size_type pos1, size_type n1, basic_string_view str,
size_type pos2, size_type n2) const;
substr(pos1, n1).compare(str.substr(pos2, n2))
.constexpr int compare(const charT* s) const;
compare(basic_string_view(s))
.constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
substr(pos1, n1).compare(basic_string_view(s))
.constexpr int compare(size_type pos1, size_type n1,
const charT* s, size_type n2) const;
substr(pos1, n1).compare(basic_string_view(s, n2))
.basic_string_view
This section specifies the basic_string_view
member functions named
find
, rfind
, find_first_of
, find_last_of
, find_first_not_of
, and find_last_not_of
.
Member functions in this section have complexity O(size() * str.size()
) at worst,
although implementations are encouraged to do better.
Each member function of the form
constexpr return-type fx1(const charT* s, size_type pos);
is equivalent to fx1(basic_string_view(s), pos)
.
Each member function of the form
constexpr return-type fx1(const charT* s, size_type pos, size_type n);
is equivalent to fx1(basic_string_view(s, n), pos)
.
Each member function of the form
constexpr return-type fx2(charT c, size_type pos);
is equivalent to fx2(basic_string_view(&c, 1), pos)
.
constexpr size_type find(basic_string_view str, size_type pos = 0) const noexcept;
xpos
, if possible, such that the following conditions obtain:
pos <= xpos
xpos + str.size() <= size()
traits::eq(at(xpos+I), str.at(I))
for all elements I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
.
Otherwise, returns npos
.traits::eq()
.constexpr size_type rfind(basic_string_view str, size_type pos = npos) const noexcept;
xpos
, if possible, such that the following conditions obtain:
xpos <= pos
xpos + str.size() <= size()
traits::eq(at(xpos+I), str.at(I))
for all elements I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
.
Otherwise, returns npos
.traits::eq()
.constexpr size_type find_first_of(basic_string_view str, size_type pos = 0) const noexcept;
xpos
, if possible, such that the following conditions obtain:
pos <= xpos
xpos < size()
traits::eq(at(xpos), str.at(I))
for some element I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
.
Otherwise, returns npos
.traits::eq()
.constexpr size_type find_last_of(basic_string_view str, size_type pos = npos) const noexcept;
xpos
, if possible, such that the following conditions obtain:
xpos <= pos
xpos < size()
traits::eq(at(xpos), str.at(I))
for some element I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
.
Otherwise, returns npos
.traits::eq()
.constexpr size_type find_first_not_of(basic_string_view str, size_type pos = 0) const noexcept;
xpos
, if possible, such that the following conditions obtain:
pos <= xpos
xpos < size()
traits::eq(at(xpos), str.at(I))
for no element I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
. Otherwise, returns npos
.traits::eq()
.constexpr size_type find_last_not_of(basic_string_view str, size_type pos = npos) const noexcept;
xpos
, if possible, such that the following conditions obtain:
xpos <= pos
xpos < size()
traits::eq(at(xpos), str.at(I))
for no element I
of the string referenced by str
.xpos
if the function can determine such a value for xpos
.
Otherwise, returns npos
.traits::eq()
.basic_string_view
non-member comparison functions
Let S
be basic_string_view<charT, traits>
, and sv
be an instance of S
.
Implementations shall provide sufficient additional overloads marked constexpr
and noexcept
so that an object t
with an implicit conversion to S
can be compared according to
Expression | Equivalent to |
---|---|
t == sv | S(t) == sv |
sv == t | sv == S(t) |
t != sv | S(t) != sv |
sv != t | sv != S(t) |
t < sv | S(t) < sv |
sv < t | sv < S(t) |
t > sv | S(t) > sv |
sv > t | sv > S(t) |
t <= sv | S(t) <= sv |
sv <= t | sv <= S(t) |
t >= sv | S(t) >= sv |
sv >= t | sv >= S(t) |
template<class T> using __identity = typename std::decay<T>::type;
template<class charT, class traits>
constexpr bool operator==(
basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept {
return lhs.compare(rhs) == 0;
}
template<class charT, class traits>
constexpr bool operator==(
basic_string_view<charT, traits> lhs,
__identity<basic_string_view<charT, traits>> rhs) noexcept {
return lhs.compare(rhs) == 0;
}
template<class charT, class traits>
constexpr bool operator==(
__identity<basic_string_view<charT, traits>> lhs,
basic_string_view<charT, traits> rhs) noexcept {
return lhs.compare(rhs) == 0;
}
— end example ]
template<class charT, class traits>
constexpr bool operator==(basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) == 0
.template<class charT, class traits>
constexpr bool operator!=(basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) != 0
.template<class charT, class traits>
constexpr bool operator< (basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) < 0
.template<class charT, class traits>
constexpr bool operator> (basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) > 0
.template<class charT, class traits>
constexpr bool operator<=(basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) <= 0
.template<class charT, class traits>
constexpr bool operator>=(basic_string_view<charT, traits> lhs,
basic_string_view<charT, traits> rhs) noexcept;
lhs.compare(rhs) >= 0
.template<class charT, class traits>
basic_ostream<charT, traits>&
operator<<(basic_ostream<charT, traits>& os,
basic_string_view<charT, traits> str);
os << str.to_string()
.template <> struct hash<experimental::string_view>; template <> struct hash<experimental::u16string_view>; template <> struct hash<experimental::u32string_view>; template <> struct hash<experimental::wstring_view>;
The template specializations shall meet the requirements of class template hash (
#include <memory>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
// See C++14 §20.7.7 , uses_allocator
template <class T, class Alloc> constexpr bool uses_allocator_v
= uses_allocator<T, Alloc>::value;
// 8.2, shared_ptr casts
template<class T, class U>
shared_ptr<T> reinterpret_pointer_cast(shared_ptr<U> const& r) noexcept;
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
shared_ptr
caststemplate<class T, class U> shared_ptr<T> reinterpret_pointer_cast(const shared_ptr<U>& r) noexcept;
reinterpret_cast<T*>((U*)0)
shall be well formed.shared_ptr<T>(r, reinterpret_cast<typename shared_ptr<T>::element_type*>(r.get()))
.
A type-erased allocator is an allocator or memory resource, alloc
,
used to allocate internal data structures for an object X
of type C
,
but where C
is not dependent on the type of alloc
.
Once alloc
has been supplied to X
(typically as a constructor argument),
alloc
can be retrieved from X
only as a pointer rptr
of static type std::experimental::pmr::memory_resource*
(rptr
is computed from alloc
depends on the type of alloc
as described in
If the type of alloc is |
then the value of rptr is |
---|---|
non-existent — no alloc specified |
The value of experimental::pmr::get_default_resource() at the time of construction. |
nullptr_t |
The value of experimental::pmr::get_default_resource() at the time of construction. |
a pointer type convertible to pmr::memory_resource* |
static_cast<experimental::pmr::memory_resource*>(alloc) |
pmr::polymorphic_allocator<U> |
alloc.resource() |
any other type meeting the Allocator requirements ( |
a pointer to a value of type experimental::pmr::resource_adaptor<A> where A is the type of alloc .
rptr remains valid only for the lifetime of X . |
None of the above | The program is ill-formed. |
Additionally, class C
shall meet the following requirements:
C::allocator_type
shall be identical to std::experimental::erased_type
.X.get_memory_resource()
returns rptr
.<experimental/memory_resource>
synopsisnamespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
class memory_resource;
bool operator==(const memory_resource& a,
const memory_resource& b) noexcept;
bool operator!=(const memory_resource& a,
const memory_resource& b) noexcept;
template <class Tp> class polymorphic_allocator;
template <class T1, class T2>
bool operator==(const polymorphic_allocator<T1>& a,
const polymorphic_allocator<T2>& b) noexcept;
template <class T1, class T2>
bool operator!=(const polymorphic_allocator<T1>& a,
const polymorphic_allocator<T2>& b) noexcept;
// The name resource_adaptor_imp is for exposition only.
template <class Allocator> class resource_adaptor_imp;
template <class Allocator>
using resource_adaptor = resource_adaptor_imp<
allocator_traits<Allocator>::rebind_alloc<char>>;
// Global memory resources
memory_resource* new_delete_resource() noexcept;
memory_resource* null_memory_resource() noexcept;
// The default memory resource
memory_resource* set_default_resource(memory_resource* r) noexcept;
memory_resource* get_default_resource() noexcept;
// Standard memory resources
struct pool_options;
class synchronized_pool_resource;
class unsynchronized_pool_resource;
class monotonic_buffer_resource;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
memory_resource
memory_resource
overview
The memory_resource
class is an abstract interface to an unbounded set of classes encapsulating memory resources.
class memory_resource {
// For exposition only
static constexpr size_t max_align = alignof(max_align_t);
public:
virtual ~memory_resource();
void* allocate(size_t bytes, size_t alignment = max_align);
void deallocate(void* p, size_t bytes,
size_t alignment = max_align);
bool is_equal(const memory_resource& other) const noexcept;
protected:
virtual void* do_allocate(size_t bytes, size_t alignment) = 0;
virtual void do_deallocate(void* p, size_t bytes,
size_t alignment) = 0;
virtual bool do_is_equal(const memory_resource& other) const noexcept = 0;
};
memory_resource
public member functions~memory_resource();
void* allocate(size_t bytes, size_t alignment = max_align);
return do_allocate(bytes, alignment);
void deallocate(void* p, size_t bytes, size_t alignment = max_align);
do_deallocate(p, bytes, alignment);
bool is_equal(const memory_resource& other) const noexcept;
return do_is_equal(other);
memory_resource
protected virtual member functionsvirtual void* do_allocate(size_t bytes, size_t alignment) = 0;
bytes
.
The returned storage is aligned to the specified alignment, if such alignment is supported;
otherwise it is aligned to max_align
.virtual void do_deallocate(void* p, size_t bytes, size_t alignment) = 0;
p
shall have been returned from a prior call to allocate(bytes, alignment)
on a memory resource equal to *this
,
and the storage at p
shall not yet have been deallocated.virtual bool do_is_equal(const memory_resource& other) const noexcept = 0;
true
if memory allocated from this can be deallocated from other and vice-versa;
otherwise it shall return false.
dynamic_cast<const D*>(&other)
and go no further (i.e., return false
) if it returns nullptr
.
— end note ]
memory_resource
equalitybool operator==(const memory_resource& a, const memory_resource& b) noexcept;
&a == &b || a.is_equal(b)
.bool operator!=(const memory_resource& a, const memory_resource& b) noexcept;
!(a == b)
.polymorphic_allocator
polymorphic_allocator
overview
A specialization of class template pmr::polymorphic_allocator
conforms to the Allocator
requirements (pmr::polymorphic_allocator
can exhibit entirely different allocation behavior.
This runtime polymorphism allows objects that use polymorphic_allocator
to behave as if they used different allocator types at run time even though they use the same static allocator type.
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class Tp>
class polymorphic_allocator {
memory_resource* m_resource; // For exposition only
public:
typedef Tp value_type;
polymorphic_allocator() noexcept;
polymorphic_allocator(memory_resource* r);
polymorphic_allocator(const polymorphic_allocator& other) = default;
template <class U>
polymorphic_allocator(const polymorphic_allocator<U>& other) noexcept;
polymorphic_allocator&
operator=(const polymorphic_allocator& rhs) = default;
Tp* allocate(size_t n);
void deallocate(Tp* p, size_t n);
template <class T, class... Args>
void construct(T* p, Args&&... args);
// Specializations for pair using piecewise construction
template <class T1, class T2, class... Args1, class... Args2>
void construct(pair<T1,T2>* p, piecewise_construct_t,
tuple<Args1...> x, tuple<Args2...> y);
template <class T1, class T2>
void construct(pair<T1,T2>* p);
template <class T1, class T2, class U, class V>
void construct(pair<T1,T2>* p, U&& x, V&& y);
template <class T1, class T2, class U, class V>
void construct(pair<T1,T2>* p, const std::pair<U, V>& pr);
template <class T1, class T2, class U, class V>
void construct(pair<T1,T2>* p, pair<U, V>&& pr);
template <class T>
void destroy(T* p);
// Return a default-constructed allocator (no allocator propagation)
polymorphic_allocator select_on_container_copy_construction() const;
memory_resource* resource() const;
};
} // namespace pmr
} // namespace experimental
} // namespace std
polymorphic_allocator
constructorspolymorphic_allocator() noexcept;
m_resource
to get_default_resource()
.polymorphic_allocator(memory_resource* r);
r
is non-null.m_resource
to r
.memory_resource*
.template <class U>
polymorphic_allocator(const polymorphic_allocator<U>& other) noexcept;
m_resource
to other.resource()
.polymorphic_allocator
member functionsTp* allocate(size_t n);
static_cast<Tp*>(m_resource->allocate(n * sizeof(Tp), alignof(Tp)))
.void deallocate(Tp* p, size_t n);
p
was allocated from a memory resource, x
, equal to *m_resource
, using x.allocate(n * sizeof(Tp), alignof(Tp))
.m_resource->deallocate(p, n * sizeof(Tp), alignof(Tp))
.template <class T, class... Args>
void construct(T* p, Args&&... args);
T
with allocator this->resource()
(see std::forward<Args>(args)...
is well-formed.
T
object at p
by this->resource()
(std::forward<Args>(args)...
.T
throws.template <class T1, class T2, class... Args1, class... Args2>
void construct(pair<T1,T2>* p, piecewise_construct_t,
tuple<Args1...> x, tuple<Args2...> y);
xprime
be a tuple
constructed from x
according to the appropriate rule from the following list.
std::pair<T1,T2>
object at p
as if by separate uses-allocator construction with allocator this->resource()
(p->first
using the elements of x
and p->second
using the elements of y
.
— end note ]
uses_allocator<T1,memory_resource*>::value
is false
and
is_constructible<T,Args1...>::value
is true
, then xprime
is x
.uses_allocator<T1,memory_resource*>::value
is true
and
is_constructible<T1,allocator_arg_t,memory_resource*,Args1...>::value
is true
,
then xprime
is tuple_cat(make_tuple(allocator_arg, this->resource()), std::move(x))
.uses_allocator<T1,memory_resource*>::value
is true
and
is_constructible<T1,Args1...,memory_resource*>::value
is true
,
then xprime
is tuple_cat(std::move(x), make_tuple(this->resource()))
.uses_allocator<T2,memory_resource*>::value
is false
and
is_constructible<T,Args2...>::value
is true
, then yprime
is y
.uses_allocator<T2,memory_resource*>::value
is true
and
is_constructible<T2,allocator_arg_t,memory_resource*,Args2...>::value
is true
, then yprime
is tuple_cat(make_tuple(allocator_arg, this->resource()), std::move(y))
.uses_allocator<T2,memory_resource*>::value
is true
and
is_constructible<T2,Args2...,memory_resource*>::value
is true
, then
yprime
is tuple_cat(std::move(y), make_tuple(this->resource()))
.std::pair<T1,T2>
object at p
using constructor arguments piecewise_construct, xprime, yprime
.
template <class T1, class T2>
void construct(std::pair<T1,T2>* p);
this->construct(p, piecewise_construct, tuple<>(), tuple<>());
template <class T1, class T2, class U, class V>
void construct(std::pair<T1,T2>* p, U&& x, V&& y);
this->construct(p, piecewise_construct, forward_as_tuple(std::forward<U>(x)), forward_as_tuple(std::forward<V>(y)));
template <class T1, class T2, class U, class V>
void construct(std::pair<T1,T2>* p, const std::pair<U, V>& pr);
this->construct(p, piecewise_construct, forward_as_tuple(pr.first), forward_as_tuple(pr.second));
template <class T1, class T2, class U, class V>
void construct(std::pair<T1,T2>* p, std::pair<U, V>&& pr);
this->construct(p, piecewise_construct,
forward_as_tuple(std::forward<U>(pr.first)),
forward_as_tuple(std::forward<V>(pr.second)));
template <class T>
void destroy(T* p);
p->~T()
.polymorphic_allocator select_on_container_copy_construction() const;
polymorphic_allocator()
.memory_resource* resource() const;
template <class T1, class T2>
bool operator==(const polymorphic_allocator<T1>& a,
const polymorphic_allocator<T2>& b) noexcept;
*a.resource() == *b.resource()
.template <class T1, class T2>
bool operator!=(const polymorphic_allocator<T1>& a,
const polymorphic_allocator<T2>& b) noexcept;
! (a == b)
resource_adaptor
resource_adaptor
An instance of resource_adaptor<Allocator>
is an adaptor that wraps a memory_resource
interface around Allocator
.
In order that resource_adaptor<X<T>>
and resource_adaptor<X<U>>
are the same type for any allocator template X
and types T
and U
,
resource_adaptor<Allocator>
is rendered as an alias to a class template such that Allocator
is rebound to a char
value type in every specialization of the class template.
The requirements on this class template are defined below.
The name resource_adaptor_imp
is for exposition only and is not normative,
but the definitions of the members of that class, whatever its name, are normative.
In addition to the Allocator
requirements (resource_adaptor
shall meet the following additional requirements:
typename allocator_traits<Allocator>::pointer
shall be identical to typename allocator_traits<Allocator>::value_type*
.typename allocator_traits<Allocator>::const_pointer
shall be identical to typename allocator_traits<Allocator>::value_type const*
.typename allocator_traits<Allocator>::void_pointer
shall be identical to void*
.typename allocator_traits<Allocator>::const_void_pointer
shall be identical to void const*
.
// The name resource_adaptor_imp is for exposition only.
template <class Allocator>
class resource_adaptor_imp : public memory_resource {
// for exposition only
Allocator m_alloc;
public:
typedef Allocator allocator_type;
resource_adaptor_imp() = default;
resource_adaptor_imp(const resource_adaptor_imp&) = default;
resource_adaptor_imp(resource_adaptor_imp&&) = default;
explicit resource_adaptor_imp(const Allocator& a2);
explicit resource_adaptor_imp(Allocator&& a2);
resource_adaptor_imp& operator=(const resource_adaptor_imp&) = default;
allocator_type get_allocator() const { return m_alloc; }
protected:
virtual void* do_allocate(size_t bytes, size_t alignment);
virtual void do_deallocate(void* p, size_t bytes, size_t alignment);
virtual bool do_is_equal(const memory_resource& other) const noexcept;
};
template <class Allocator>
using resource_adaptor = typename resource_adaptor_imp<
allocator_traits<Allocator>::template rebind_alloc<char>>;
resource_adaptor_imp
constructorsexplicit resource_adaptor_imp(const Allocator& a2);
m_alloc
with a2
.explicit resource_adaptor_imp(Allocator&& a2);
m_alloc
with std::move(a2)
.resource_adaptor_imp
member functionsvoid* do_allocate(size_t bytes, size_t alignment);
m_alloc.allocate
. The size and alignment of the allocated memory shall meet the requirements for a class derived from memory_resource
(void do_deallocate(void* p, size_t bytes, size_t alignment);
p
was previously allocated using A.allocate
, where A == m_alloc
, and not subsequently deallocated.m_alloc.deallocate()
.bool do_is_equal(const memory_resource& other) const noexcept;
Let p
be dynamic_cast<const resource_adaptor_imp*>(&other)
.
false
if p
is null, otherwise the value of m_alloc == p->m_alloc
.memory_resource
objectsmemory_resource* new_delete_resource() noexcept;
memory_resource
that can serve as a resource for allocating memory using ::operator new
and ::operator delete
. The same value is returned every time this function is called. For return value p
and memory resource r
, p->is_equal(r)
returns &r == p
.memory_resource* null_memory_resource() noexcept;
memory_resource
for which allocate()
always throws bad_alloc
and
for which deallocate()
has no effect.
The same value is returned every time this function is called.
For return value p
and memory resource r
, p->is_equal(r)
returns &r == p
.
The default memory resource pointer is a pointer to a memory resource
that is used by certain facilities when an explicit memory resource is not supplied through the interface.
Its initial value is the return value of new_delete_resource()
.
memory_resource* set_default_resource(memory_resource* r) noexcept;
r
is non-null, sets the value of the default memory resource pointer to r
,
otherwise sets the default memory resource pointer to new_delete_resource()
.
get_default_resource() == r
.set_default_resource
and get_default_resource
functions shall not incur a data race.
A call to the set_default_resource
function shall synchronize with subsequent calls to the set_default_resource
and get_default_resource
functions.
memory_resource* get_default_resource() noexcept;
synchronized_pool_resource
and unsynchronized_pool_resource
The synchronized_pool_resource
and unsynchronized_pool_resource
classes (collectively, pool resource classes)
are general-purpose memory resources having the following qualities:
deallocate
has not been called for some of the allocated blocks.do_allocate
.
Each call to do_allocate(size, alignment)
is dispatched to the pool serving the smallest blocks accommodating at least size
bytes.pool_options
struct may be passed to the pool resource constructors to tune the largest block size and the maximum chunk size.
A synchronized_pool_resource
may be accessed from multiple threads without external synchronization
and may have thread-specific pools to reduce synchronization costs.
An unsynchronized_pool_resource
class may not be accessed from multiple threads simultaneously
and thus avoids the cost of synchronization entirely in single-threaded applications.
struct pool_options {
size_t max_blocks_per_chunk = 0;
size_t largest_required_pool_block = 0;
};
class synchronized_pool_resource : public memory_resource {
public:
synchronized_pool_resource(const pool_options& opts, memory_resource* upstream);
synchronized_pool_resource()
: synchronized_pool_resource(pool_options(), get_default_resource()) { }
explicit synchronized_pool_resource(memory_resource* upstream)
: synchronized_pool_resource(pool_options(), upstream) { }
explicit synchronized_pool_resource(const pool_options& opts)
: synchronized_pool_resource(opts, get_default_resource()) { }
synchronized_pool_resource(
const synchronized_pool_resource&) = delete;
virtual ~synchronized_pool_resource();
synchronized_pool_resource& operator=(
const synchronized_pool_resource&) = delete;
void release();
memory_resource* upstream_resource() const;
pool_options options() const;
protected:
virtual void* do_allocate(size_t bytes, size_t alignment);
virtual void do_deallocate(void* p, size_t bytes, size_t alignment);
virtual bool do_is_equal(const memory_resource& other) const noexcept;
};
class unsynchronized_pool_resource : public memory_resource {
public:
unsynchronized_pool_resource(const pool_options& opts, memory_resource* upstream);
unsynchronized_pool_resource()
: unsynchronized_pool_resource(pool_options(), get_default_resource()) { }
explicit unsynchronized_pool_resource(memory_resource* upstream)
: unsynchronized_pool_resource(pool_options(), upstream) { }
explicit unsynchronized_pool_resource(const pool_options& opts)
: unsynchronized_pool_resource(opts, get_default_resource()) { }
unsynchronized_pool_resource(
const unsynchronized_pool_resource&) = delete;
virtual ~unsynchronized_pool_resource();
unsynchronized_pool_resource& operator=(
const unsynchronized_pool_resource&) = delete;
void release();
memory_resource* upstream_resource() const;
pool_options options() const;
protected:
virtual void* do_allocate(size_t bytes, size_t alignment);
virtual void do_deallocate(void* p, size_t bytes, size_t alignment);
virtual bool do_is_equal(const memory_resource& other) const noexcept;
};
pool_options
data members
The members of pool_options
comprise a set of constructor options for pool resources.
The effect of each option on the pool resource behavior is described below:
size_t max_blocks_per_chunk;
The maximum number of blocks that will be allocated at once from the upstream memory resource to replenish a pool.
If the value of max_blocks_per_chunk
is zero or is greater than an implementation-defined limit, that limit is used instead.
The implementation may choose to use a smaller value than is specified in this field and may use different values for different pools.
size_t largest_required_pool_block;
The largest allocation size that is required to be fulfilled using the pooling mechanism.
Attempts to allocate a single block larger than this threshold will be allocated directly from the upstream memory resource.
If largest_required_pool_block
is zero or is greater than an implementation-defined limit, that limit is used instead.
The implementation may choose a pass-through threshold larger than specified in this field.
synchronized_pool_resource(const pool_options& opts, memory_resource* upstream); unsynchronized_pool_resource(const pool_options& opts, memory_resource* upstream);
upstream
is the address of a valid memory resource.upstream
whenever the pool resource is unable to satisfy a memory request from its own internal data structures.
The resulting object will hold a copy of upstream
, but will not own the resource to which upstream
points.
upstream->allocate()
will be substantially fewer than calls to this->allocate()
in most cases.
— end note ]
upstream->allocate()
throws.
It is unspecified if or under what conditions this constructor calls upstream->allocate()
.virtual ~synchronized_pool_resource(); virtual ~unsynchronized_pool_resource();
this->release()
.void release();
upstream_resource()->deallocate()
as necessary to release all allocated memory.
upstream_resource()
even if deallocate
has not been called for some of the allocated blocks.
— end note ]
memory_resource* upstream_resource() const;
upstream
argument provided to the constructor of this object.pool_options options() const;
virtual void* do_allocate(size_t bytes, size_t alignment);
bytes
.
The size and alignment of the allocated memory shall meet the requirements for a class derived from memory_resource
(bytes
is unable to satisfy the memory request from its own internal data structures,
it will call upstream_resource()->allocate()
to obtain more memory.
If bytes
is larger than that which the largest pool can handle,
then memory will be allocated using upstream_resource()->allocate()
.
upstream_resource()->allocate()
throws.virtual void do_deallocate(void* p, size_t bytes, size_t alignment);
p
to the pool.
It is unspecified if or under what circumstances this operation will result in a call to upstream_resource()->deallocate()
.virtual bool unsynchronized_pool_resource::do_is_equal(const memory_resource& other) const noexcept;
this == dynamic_cast<const unsynchronized_pool_resource*>(&other)
.virtual bool synchronized_pool_resource::do_is_equal(const memory_resource& other) const noexcept;
this == dynamic_cast<const synchronized_pool_resource*>(&other)
.monotonic_buffer_resource
monotonic_buffer_resource
overview
A monotonic_buffer_resource
is a special-purpose memory resource
intended for very fast memory allocations in situations where memory is used to build up a few objects
and then is released all at once when the memory resource object is destroyed.
It has the following qualities:
deallocate
has no effect,
thus the amount of memory consumed increases monotonically until the resource is destroyed.allocate
and deallocate
do not synchronize with one another.deallocate
has not been called for some of the allocated blocks.class monotonic_buffer_resource : public memory_resource {
memory_resource* upstream_rsrc; // exposition only
void* current_buffer; // exposition only
size_t next_buffer_size; // exposition only
public:
explicit monotonic_buffer_resource(memory_resource* upstream);
monotonic_buffer_resource(size_t initial_size,
memory_resource* upstream);
monotonic_buffer_resource(void* buffer, size_t buffer_size,
memory_resource* upstream);
monotonic_buffer_resource()
: monotonic_buffer_resource(get_default_resource()) { }
explicit monotonic_buffer_resource(size_t initial_size)
: monotonic_buffer_resource(initial_size,
get_default_resource()) { }
monotonic_buffer_resource(void* buffer, size_t buffer_size)
: monotonic_buffer_resource(buffer, buffer_size,
get_default_resource()) { }
monotonic_buffer_resource(const monotonic_buffer_resource&) = delete;
virtual ~monotonic_buffer_resource();
monotonic_buffer_resource operator=(
const monotonic_buffer_resource&) = delete;
void release();
memory_resource* upstream_resource() const;
protected:
virtual void* do_allocate(size_t bytes, size_t alignment);
virtual void do_deallocate(void* p, size_t bytes,
size_t alignment);
virtual bool do_is_equal(const memory_resource& other) const noexcept;
};
monotonic_buffer_resource
constructor and destructorexplicit monotonic_buffer_resource(memory_resource* upstream); monotonic_buffer_resource(size_t initial_size, memory_resource* upstream);
upstream
shall be the address of a valid memory resource.
initial_size
, if specified, shall be greater than zero.upstream_rsrc
to upstream
and current_buffer
to nullptr
.
If initial_size
is specified, sets next_buffer_size
to at least initial_size
;
otherwise sets next_buffer_size
to an implementation-defined size.monotonic_buffer_resource(void* buffer, size_t buffer_size, memory_resource* upstream);
upstream
shall be the address of a valid memory resource.
buffer_size
shall be no larger than the number of bytes in buffer
.upstream_rsrc
to upstream
, current_buffer
to buffer
, and next_buffer_size
to initial_size
(but not less than 1),
then increases next_buffer_size
by an implementation-defined growth factor (which need not be integral).~monotonic_buffer_resource();
this->release()
.void release();
upstream_rsrc->deallocate()
as necessary to release all allocated memory.upstream_rsrc
even if some blocks that were allocated from this
have not been deallocated from this
.
— end note ]
memory_resource* upstream_resource() const;
upstream_rsrc
.void* do_allocate(size_t bytes, size_t alignment);
bytes
.
The size and alignment of the allocated memory shall meet the requirements for a class derived from memory_resource
(current_buffer
can fit a block with the specified bytes
and alignment
,
then allocate the return block from current_buffer
;
otherwise set current_buffer
to upstream_rsrc->allocate(n, m)
,
where n
is not less than max(bytes, next_buffer_size)
and m
is not less than alignment
,
and increase next_buffer_size
by an implementation-defined growth factor (which need not be integral),
then allocate the return block from the newly-allocated current_buffer
.
upstream_rsrc->allocate()
throws.void do_deallocate(void* p, size_t bytes, size_t alignment);
bool do_is_equal(const memory_resource& other) const noexcept;
this == dynamic_cast<const monotonic_buffer_resource*>(&other)
.#include <string>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
// basic_string using polymorphic allocator in namespace pmr
template <class charT, class traits = char_traits<charT>>
using basic_string =
std::basic_string<charT, traits, polymorphic_allocator<charT>>;
// basic_string typedef names using polymorphic allocator in namespace
// std::experimental::pmr
typedef basic_string<char> string;
typedef basic_string<char16_t> u16string;
typedef basic_string<char32_t> u32string;
typedef basic_string<wchar_t> wstring;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <deque>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class T>
using deque = std::deque<T,polymorphic_allocator<T>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <forward_list>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class T>
using forward_list =
std::forward_list<T,polymorphic_allocator<T>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <list>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class T>
using list = std::list<T,polymorphic_allocator<T>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <vector>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class T>
using vector = std::vector<T,polymorphic_allocator<T>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <map>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class Key, class T, class Compare = less<Key>>
using map = std::map<Key, T, Compare,
polymorphic_allocator<pair<const Key,T>>>;
template <class Key, class T, class Compare = less<Key>>
using multimap = std::multimap<Key, T, Compare,
polymorphic_allocator<pair<const Key,T>>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <set>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class Key, class Compare = less<Key>>
using set = std::set<Key, Compare,
polymorphic_allocator<Key>>;
template <class Key, class Compare = less<Key>>
using multiset = std::multiset<Key, Compare,
polymorphic_allocator<Key>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <unordered_map>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class Key, class T,
class Hash = hash<Key>,
class Pred = equal_to<Key>>
using unordered_map =
std::unordered_map<Key, T, Hash, Pred,
polymorphic_allocator<pair<const Key,T>>>;
template <class Key, class T,
class Hash = hash<Key>,
class Pred = equal_to<Key>>
using unordered_multimap =
std::unordered_multimap<Key, T, Hash, Pred,
polymorphic_allocator<pair<const Key,T>>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <unordered_set>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class Key,
class Hash = hash<Key>,
class Pred = equal_to<Key>>
using unordered_set = std::unordered_set<Key, Hash, Pred,
polymorphic_allocator<Key>>;
template <class Key,
class Hash = hash<Key>,
class Pred = equal_to<Key>>
using unordered_multiset =
std::unordered_multiset<Key, Hash, Pred,
polymorphic_allocator<Key>>;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
#include <regex>
#include <exerimental/string>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace pmr {
template <class BidirectionalIterator>
using match_results =
std::match_results<BidirectionalIterator,
polymorphic_allocator<sub_match<BidirectionalIterator>>>;
typedef match_results<const char*> cmatch;
typedef match_results<const wchar_t*> wcmatch;
typedef match_results<string::const_iterator> smatch;
typedef match_results<wstring::const_iterator> wsmatch;
} // namespace pmr
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
<experimental/algorithm>
synopsis#include <algorithm>
namespace std {
namespace experimental {
inline namespace fundamentals_v1 {
template<class ForwardIterator, class Searcher>
ForwardIterator search(ForwardIterator first, ForwardIterator last,
const Searcher& searcher);
template<class PopulationIterator, class SampleIterator,
class Distance, class UniformRandomNumberGenerator>
SampleIterator sample(PopulationIterator first, PopulationIterator last,
SampleIterator out, Distance n,
UniformRandomNumberGenerator&& g);
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
template<class ForwardIterator, class Searcher>
ForwardIterator search(ForwardIterator first, ForwardIterator last,
const Searcher& searcher);
searcher(first, last)
.Searcher
need not meet the CopyConstructible
requirements.template<class PopulationIterator, class SampleIterator,
class Distance, class UniformRandomNumberGenerator>
SampleIterator sample(PopulationIterator first, PopulationIterator last,
SampleIterator out, Distance n,
UniformRandomNumberGenerator&& g);
PopulationIterator
shall meet the requirements of an InputIterator
type.SampleIterator
shall meet the requirements of an OutputIterator
type.SampleIterator
shall meet the additional requirements of a RandomAccessIterator
type
unless PopulationIterator
meets the additional requirements of a ForwardIterator
type.PopulationIterator
's value type shall be writable to out
.Distance
shall be an integer type.UniformRandomNumberGenerator
shall meet the requirements of a uniform random number generator type (Distance
.out
shall not be in the range first
, last
)min(last−first, n)
elements (the sample)
from first
, last
)out
such that each possible sample has equal probability of appearance.
n
).PopulationIterator
meets the requirements of a ForwardIterator
type.g
shall serve as the implementation’s source of randomness.<experimental/net>
synopsisnamespace std {
namespace experimental {
inline namespace fundamentals_v1 {
namespace net {
// 10.2, Byte order conversion
constexpr uint32_t htonl(uint32_t host) noexcept;
constexpr uint16_t htons(uint16_t host) noexcept;
template <class T>
constexpr T hton(T host) noexcept = delete;
template <>
constexpr unsigned-integral hton(unsigned-integral host) noexcept;
constexpr uint32_t ntohl(uint32_t network) noexcept;
constexpr uint16_t ntohs(uint16_t network) noexcept;
template <class T>
constexpr T ntoh(T network) noexcept = delete;
template <>
constexpr unsigned-integral ntoh(unsigned-integral network) noexcept;
} // namespace net
} // namespace fundamentals_v1
} // namespace experimental
} // namespace std
The <experimental/net>
header is available if uint8_t
, uint16_t
, uint32_t
, and uint64_t
are provided by <cstdint>
.
For each unsigned integer type unsigned-integral, there shall be explicit specializations of the hton()
and ntoh()
templates.
Network byte order is big-endian, or most significant byte first (RFC 2781 section 3.1). This byte order is used by certain network data formats as it passes through the network. Host byte order is the endianness of the host machine.
constexpr uint32_t htonl(uint32_t host) noexcept; constexpr uint16_t htons(uint16_t host) noexcept; template <>
constexpr unsigned-integral hton(unsigned-integral host) noexcept;
constexpr uint32_t ntohl(uint32_t network) noexcept; constexpr uint16_t ntohs(uint16_t network) noexcept; template <>
constexpr unsigned-integral ntoh(unsigned-integral network) noexcept;