is_function()
Returns success if $1 names a function
func_deprecated()
func_copy()
Makes a copy of named function ($1) as a new name ($2)
func_chain()
func_delete()
Delets the name function ($1)
func_save()
Saves a copy of the function ($1) using a new name ($2). Currently, this is an alias for func_copy(), but that may change.
func_restore()
Restores the function ($1) using a saved copy ($2), deleting the copy when finished.
func_trace()
Prints debug string of the caller function and arguments ($@)
func_bool()
Executes arguments ($@) and prints a boolean command that produces the same result: true or false. This function
$1 - Command
$@ - Command arguments (optional)
func bool_not()
Like func_bool(), executes a command ($@), but prints a boolean command that produces the complement of its result.
$1 - Command
$@ - Command arguments (optional)