Top "Parameter-passing" questions

parameter-passing is the process of assigning values to the parameters of a function

Is there a way to omit out parameter?

Let's assume I have a function with out parameter, however I do not need its value. Is there a way …

c# parameter-passing out-parameters
How to add parameter to rails index action/method?

I want to pass a parameter to the index action, but the I'm only getting the show action. routes.rb: …

ruby-on-rails ruby ruby-on-rails-3 parameter-passing rails-routing
How can I pass a part of a vector as a function argument?

I'm using a vector in a C++ program and I need to pass a part of that vector to a …

c++ vector containers parameter-passing partial
Are nested functions possible in VBA?

I'm trying to clean up code by stripping parameters from a function within a private scope, like this: Function complicatedFunction(…

vba parameter-passing nested-function inline-functions
Should I add a trailing comma after the last argument in a function call?

What is better to do? self.call(1, True, "hi") or self.call(1, True, "hi",) And what in the following cases: …

python function coding-style parameter-passing
Pass a parameter value to a Dataset Parameter in SSRS 2008

I have a dataset with a parameter as which is passed to a query as shown below. The issue here …

xml reporting-services ssrs-2008 parameter-passing caml
Passing Function name as arguments to a function

Is it possible to pass the name of a function(say A) as an argument to another function (say B), …

c++ parameter-passing function-calls
Django url parameter passing

I am not even sure what category in Django this question falls in and I am very new to django. …

python django api parameter-passing url-parameters
Python: How to pass arguments to the __code__ of a function?

The following works: def spam(): print "spam" exec(spam.__code__) spam But what if spam takes arguments? def spam(eggs): …

python function parameter-passing exec eval
Passing data between managed components in JSF

Is it actually possible to pass any data between managed components in JSF? If yes, how to achieve this? Could …

jsf parameter-passing managed-bean