Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • D

Idiom #93 Pass a runnable procedure as parameter

Implement the procedure control which receives one parameter f, and runs f.

void control(void function() f)
{
    f();
}

The standard, C-like, solution that uses a function pointer as run-time parameter and not a template one.
import std.traits;
void control(alias f)()
if (isCallable!f)
{
    f();
}

The alias parameter allow to pass whatever you want as template parameter. For more safety a constraint tests if the argument is something that can be run.
procedure Control (F : access procedure) is
begin
   F.all;
end Control;

New implementation...
< >
programming-idioms.org