Logo

Programming-Idioms

  • Perl
  • D

Idiom #93 Pass a runnable procedure as parameter

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

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.
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.
sub control {
    my $f = shift;
    $f->();
}
procedure Control (F : access procedure) is
begin
   F.all;
end Control;

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