You are here

function EvalMath::funcs in Webform Calculator 7

File

./evalmath.class.php, line 160

Class

EvalMath

Code

function funcs() {
  $output = array();
  foreach ($this->f as $fnn => $dat) {
    $output[] = $fnn . '(' . implode(',', $dat['args']) . ')';
  }
  return $output;
}