| Category: functors | Component type: concept |
| Result type | F::result_type | The type returned when the Generator is called |
| F | A type that is a model of Adaptable Generator |
struct counter
{
typedef int result_type;
counter() : n(0) {}
result_type operator()() { return n++; }
result_type n;
};
[1] Note the implication of this: a function pointer T (*f)() is a Generator, but not an Adaptable Generator: the expression f::result_type is nonsensical.
| Using this site means you accept its terms of use | privacy policy | | | trademark information |
| Copyright © 1993-2003 Silicon Graphics, Inc. All rights reserved. | | | contact us |