You are here

public function WebformEvalMath::funcs in Webform Calculator 7.2

File

./matheval.class.php, line 160

Class

WebformEvalMath

Code

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