libbobcat-dev_3.22.00-x.tar.gz repeated function calls
2005-2014
NAME
FBB::repeat - call a (member) function a fixed number of times
SYNOPSIS
#include <bobcat/repeat>
DESCRIPTION
The FBB::repeat function template allows a function or member function to
be called a certain number of times. The functions or member functions may
define arguments. Arguments to these functions are specified when repeat
is called, and are perfectly forwarded by the repeat function
template to the (member) function called by repeat.
The first argument of the repeat function template defines the number of
times the (member) function must be called.
The FBB::repeat function template are defined inline,
allowing the compiler to `optimize away' the repeat function call
itself.
NAMESPACE
FBB
All constructors, members, operators and manipulators, mentioned in this
man-page, are defined in the namespace FBB.
Counter represents the counter's type. Usually an int or
size_t. When calling repeatcounter must be initialized to
the number of times repeat must call the (member) function (see
below);
First represents the prototype of a function or the name of a
class. name of a class. Likewise, first either is the address
(name) of the function to be called or the name of an object of class
type First. In the latter case the object may or may not be a
const object.
...Params represents the set of parameter types of arguments
which must be perfectly forwarded to the called function. If first
represents a class type object, the first argument must be the
address of a member function of the class First.
Be careful when using overloaded functions, as the template argument
resolution mechanism may be unable to determine which function to
call. If overloaded functions must be used, a static_cast is
likely required to disambiguate your intentions.
DISTRIBUTION FILES
bobcat_3.22.00-x.dsc: detached signature;
bobcat_3.22.00-x.tar.gz: source archive;
bobcat_3.22.00-x_i386.changes: change log;
libbobcat1_3.22.00-x_*.deb: debian package holding the
libraries;
libbobcat1-dev_3.22.00-x_*.deb: debian package holding the
libraries, headers and manual pages;
http://sourceforge.net/projects/bobcat: public archive location;
BOBCAT
Bobcat is an acronym of `Brokken's Own Base Classes And Templates'.
COPYRIGHT
This is free software, distributed under the terms of the
GNU General Public License (GPL).