public member function
<random>

std::subtract_with_carry_engine::operator()

result_type operator()();
Generate random number
Returns a new random number.

The function advances the internal state by calling its transition algorithm which applies a subtract-with-carry operation on the state sequence element.

Its generation algorithm is a direct copy of the value generated with the transition algorithm.

Parameters

None

Return value

A new random number.
result_type is a member type, defined as an alias of the first class template parameter (UIntType).

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// subtract_with_carry::operator()
#include <iostream>
#include <chrono>
#include <random>

int main ()
{
  // obtain a seed from the system clock:
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();

  std::subtract_with_carry_engine<unsigned,24,10,24> generator (seed);
  std::cout << "Random value: " << generator() << std::endl;

  return 0;
}

Possible output:
Random value: 2780326


Complexity

Amortized constant.

See also