blob: 5f991580528bb857c549b8636beb7b3ed1e4b3d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* Example of a C++ extension to icon via loadfunc,
* without garbage collection difficulties.
* Type 'make iexample' to build.
* Carl Sturtivant, 2008/3/16
*/
#include "loadfuncpp.h"
using namespace Icon;
class sequence: public generator {
safe current, inc;
public:
sequence(safe start, safe increment) {
current = start - increment;
inc = increment;
}
virtual bool hasNext() {
return true;
}
virtual value giveNext() {
return current = current + inc;
}
};
extern "C" int seq2(value argv[]){
sequence seq(argv[1], argv[2]);
return seq.generate(argv);
}
|