CGAL::bind_5

Definition

The function bind_5 is used to bind the fifth argument of a functor to some specific value. The result is a functor that takes one argument less and calls the original functor where the fifth argument is set to the bound value.

#include <CGAL/functional.h>

template < class F, class A >
typename Bind< F, A, 5 >::Type
bind_5 ( F f, A a)
returns a functor equivalent to f, but where the fifth argument is bound (fixed) to a.
Requirement: F is a model for AdaptableFunctor.

See Also

CGAL::Bind<F,A,i>
CGAL::bind_1
CGAL::bind_2
CGAL::bind_3
CGAL::bind_4
AdaptableFunctor