![]() |
As an example, consider a binary functor f0 and two binary functors f1 and f2. Composing f1 and f2 into f0 yields a new binary functor
f: (x0,x1) f0(f1(x0,x1),f2(x0,x1)).
#include <CGAL/functional.h>
| ||
| ||
| ||
returns the functor
f0(f1( · ),f2( · )) with the same
arity as f1 (and f2). Requirement: f0 is AdaptableFunctor of arity 2. f1 and f2 are AdaptableFunctors having the same arity. | ||
| ||
| ||
| ||
returns the functor
f0(f1( · ),f2( · ),f3( · ))
with the same arity as f1 (and f2, f3). Requirement: f0 is AdaptableFunctor of arity 3. f1, f2, and f3 are AdaptableFunctors having the same arity. |