Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions source/support.tex
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,8 @@
// freestanding, also in \libheader{memory}, \libheader{scoped_allocator}, \libheader{string}, \libheader{deque}, \libheader{forward_list}, \libheader{list},
// \libheader{vector}, \libheader{map}, \libheader{set}, \libheader{unordered_map}, \libheader{unordered_set}
#define @\defnlibxname{cpp_lib_any}@ 201606L // also in \libheader{any}
#define @\defnlibxname{cpp_lib_apply}@ 202506L // freestanding, also in \libheader{tuple}, \libheader{type_traits}
#define @\defnlibxname{cpp_lib_apply}@ 202506L
// freestanding, also in \libheader{tuple}, \libheader{type_traits}
#define @\defnlibxname{cpp_lib_array_constexpr}@ 201811L
// freestanding, also in \libheader{iterator}, \libheader{array}
#define @\defnlibxname{cpp_lib_as_const}@ 201510L // freestanding, also in \libheader{utility}
Expand Down Expand Up @@ -4670,10 +4671,10 @@
constexpr initializer_list() noexcept;

constexpr const E* data() const noexcept;
constexpr size_t size() const noexcept; // number of elements
constexpr size_t size() const noexcept;
constexpr bool empty() const noexcept;
constexpr const E* begin() const noexcept; // first element
constexpr const E* end() const noexcept; // one past the last element
constexpr const E* begin() const noexcept;
constexpr const E* end() const noexcept;
};
}
\end{codeblock}
Expand Down