This page is a snapshot from the LWG issues list, see theLibrary Active Issues List for more information and the meaning ofC++17 status.
seed_seq::size() should benoexceptSection: 29.5.8.1[rand.util.seedseq]Status:C++17Submitter: Stephan T. LavavejOpened: 2014-10-01Last modified: 2017-07-30
Priority:0
View all otherissues in [rand.util.seedseq].
View all issues withC++17 status.
Discussion:
Obvious.
[Urbana 2014-11-07: Move to Ready]
Proposed resolution:
This wording is relative to N3936.
Change 29.5.8.1[rand.util.seedseq], classseed_seq synopsis, as depicted:
class seed_seq{public: […] size_t size() constnoexcept; […]};Change 29.5.8.1[rand.util.seedseq] around p10, as depicted:
size_t size() constnoexcept;-10-Returns: The number of 32-bit units that would be returned by a call to
param().-11-Throws: Nothing.-12-Complexity: Constant time.