.\"evaluate a function pointer
.TH apply 3 "5 Sep 1994" MudOS "LPC Library Functions"
.SH NAME
apply() - evaluate a function pointer
.SH SYNOPSIS
.nf
mixed apply(mixed f, mixed *args)
.SH DESCRIPTION
If f is a function, f is called with the array 'args' expanded as it's
arguments. For example,
apply(f, ({ 1, 2, 3 }) ) is the same as evaluate(f, 1, 2, 3);