Namespaces
Variants
Views
Actions

std::seed_seq::size

From cppreference.com
< cpp‎ | numeric‎ | random‎ | seed seq
 
 
 
Pseudo-random number generation
Uniform random bit generators
Engines and engine adaptors
Non-deterministic generator
Distributions
Uniform distributions
Bernoulli distributions
Poisson distributions
Normal distributions
Sampling distributions
Seed Sequences
(C++11)
C library
 
 
std::size_t size() const;
(since C++11)

Returns the size of the stored initial seed sequence.

Contents

[edit] Parameters

(none)

[edit] Return value

The size of the private container that was populated at construction time.

[edit] Complexity

Constant time.

[edit] Exeptions

(none) (until C++17)
noexcept specification:  
noexcept
  
(since C++17)

[edit] Example

#include <random>
#include <iostream>
int main()
{
    std::seed_seq s1 = {-1, 0, 1};
    std::cout << s1.size() << '\n';
}

Output:

3