DOKK / manpages / debian 10 / libbobcat-dev / irandstream.3bobcat.en
FBB::IRandStream(3bobcat) Random numbers istream FBB::IRandStream(3bobcat)

FBB::IRandStream - Istream producing random numbers

#include <bobcat/irandstream>
Linking option: -lbobcat

FBB::IRandStream objects may be used to extract random numbers in a given range from a stream.

FBB
All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.

std::istream,
FBB::RandBuffer (private)

IRandStream(int max):
This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is provided when this is not considered appropriate. Random values between 1 and max (inclusive) are returned.
IRandStream(int min, int max):
This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is provided when this is not considered appropriate. Random values between min and max (inclusive) are returned.
IRandStream(int min, int max, long seed):
This FBB::IRandStream() constructor initializes the random generator. The seed is used to initialize the random number generator. To start the random generator at some unpredictable point, time(0) could be used. Random values between min and max (inclusive) are returned.

Since the class uses public derivation from std::istream, all members of this class can be used.

#include <iostream>
#include <bobcat/irandstream>
using namespace std;
using namespace FBB;
int main(int argc, char **argv)
{

IRandStream in(1000);
for (; argc--; )
{
size_t random;
in >> random;
cout << random << endl;
} }

bobcat/irandstream - defines the class interface

bobcat(7), randbuffer(3bobcat)

None Reported.

bobcat_4.08.06-x.dsc: detached signature;
bobcat_4.08.06-x.tar.gz: source archive;
bobcat_4.08.06-x_i386.changes: change log;
libbobcat1_4.08.06-x_*.deb: debian package holding the libraries;
libbobcat1-dev_4.08.06-x_*.deb: debian package holding the libraries, headers and manual pages;
http://sourceforge.net/projects/bobcat: public archive location;

Bobcat is an acronym of `Brokken’s Own Base Classes And Templates’.

This is free software, distributed under the terms of the GNU General Public License (GPL).

Frank B. Brokken (f.b.brokken@rug.nl).

2005-2018 libbobcat-dev_4.08.06-x.tar.gz