Difference between revisions of "Recital Functions"

From Recital Documentation Wiki
Jump to: navigation, search
(Passing Parameters to a Recital Function)
(Defining a Function)
Line 3: Line 3:
 
The [[FUNCTION|function]] command is used to declare a User Defined Function (UDF).  Recital UDFs can be used wherever a built-in Recital function can be used.
 
The [[FUNCTION|function]] command is used to declare a User Defined Function (UDF).  Recital UDFs can be used wherever a built-in Recital function can be used.
  
A UDF can have a variable number of parameters passed to it.  These are assigned to private variables in the the <parameter-list> declaration or [[PARAMETERS|parameters]] statement.  The [[PARAMETERS()|parameters()]] function can be used to determine how many actual parameters were specified.
+
 
  
 
The [[FUNCTION|function]] command is terminated with an [[ENDFUNC|endfunc]] or [[RETURN|return]] statement.  
 
The [[FUNCTION|function]] command is terminated with an [[ENDFUNC|endfunc]] or [[RETURN|return]] statement.  

Revision as of 14:19, 12 March 2010

Recital Functions

Defining a Function

The function command is used to declare a User Defined Function (UDF). Recital UDFs can be used wherever a built-in Recital function can be used.


The function command is terminated with an endfunc or return statement.

function <name as character>[(<parameters as list>)]
[parameters <parameters as list>]
[return <value as expression> | endfunc]

Calling a Function

Functions can be included in program files, as well as in procedure library files. The functions in a procedure library file are made known to the Recital process by using the set procedure command.

set procedure to [<filename as character> [ADDITIVE]] 

Functions can be called like built-in functions: postfixing the name of the function with brackets containing any arguments, e.g.

myudf(m_var,"Hello World",123.45,{12/03/2010})

In this case, parameters are passed by value: a copy of the memory variable is passed to the module and the original memory variable is not accessible within the called module.

Alternatively, the function can be called using the do command and specifying the arguments in the with clause, e.g.

do myudf with m_var,"Hello World",123.45,{12/03/2010}

With do command, parameters are passed by reference: the called module is given the address of the memory variable so the memory variable itself can be altered.

What is a Recital Function

How to Write a Recital Function

Returning a Value from a Recital Function

Declaring Parameters in a Recital Function

Calling Recital Functions

Passing Parameters by Reference

Returning Values by Reference

Variable Scope

Built-in Functions

Extending with Functions Developed in C/C++

Summary