Top "Function-call" questions

A function call is a line of code that executes a specific block of code defined as a function, that is, self-contained code that may optionally take arguments, defined for the purpose of code reuse.

How to call a function, PostgreSQL

I'm trying to use a function with PostgreSQL to save some data. Here is the create script: -- Function: "saveUser"(…

postgresql function-call
Call external javascript functions from java code

By using Java Scripting API, I am able to execute JavaScript within Java. However, can someone please explain what I …

java javascript rhino function-call
Converting list to *args when calling function

In Python, how do I convert a list to *args? I need to know because the function scikits.timeseries.lib.…

python list arguments function-call
What registers to save in the ARM C calling convention?

It's been a while since I last coded arm assembler and I'm a little rusty on the details. If I …

c assembly arm calling-convention function-call
How to call a PHP function in JavaScript?

I have index.php <select id="year_list" name="year_list" onchange="check_year_event('year_list', 'event_list');" &…

php javascript function-call
Using print() (the function version) in Python2.x

I understand the difference between a statement and an expression, and I understand that Python3 turned print() into a function. …

python printing python-2.x function-call
Calling a function through its address in memory in c / c++

Given knowledge of the prototype of a function and its address in memory, is it possible to call this function …

c++ c function-call memory-address
What is the difference between parent.frame() and parent.env() in R; how do they differ in call by reference?

It would be helpful if someone can illustrate this with a simple example? Also, where would it be useful to …

r environment function-call stack-frame
How to call Java function from string stored in a Variable

Possible Duplicate: Calling a method named “string” at runtime in Java and C I need to be able to call …

java reflection function-call
Probability Mass Function of a Binomial Distribution in Python

I am using Python3 to compute the Probability Mass Function (PMF) of this wikipedia example: I tried to follow this …

python-3.x scipy probability function-call