Skip to content
Open
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
4 changes: 2 additions & 2 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17601,7 +17601,7 @@
template<class U, class UAbi>
constexpr explicit(@\seebelow@) basic_vec(const basic_vec<U, UAbi>&) noexcept;
template<class G>
constexpr explicit basic_vec(G&& gen) noexcept;
constexpr explicit basic_vec(G&& gen);
template<class R, class... Flags>
constexpr basic_vec(R&& range, flags<Flags...> = {});
template<class R, class... Flags>
Expand Down Expand Up @@ -20065,7 +20065,7 @@
template<size_t UBytes, class UAbi>
constexpr explicit basic_mask(const basic_mask<UBytes, UAbi>&) noexcept;
template<class G>
constexpr explicit basic_mask(G&& gen) noexcept;
constexpr explicit basic_mask(G&& gen);
constexpr basic_mask(const bitset<size()>& b) noexcept;
constexpr explicit basic_mask(@\libconcept{unsigned_integral}@ auto val) noexcept;

Expand Down