Top "Parameter-passing" questions

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

Bare asterisk in function arguments?

What does a bare asterisk in the arguments of a function do? When I looked at the pickle module, I …

python python-3.x parameter-passing
How to pass parameters to query?

I'm trying to write a query for my application, but I'm having some troubles. I need to pass as a …

sql jasper-reports parameter-passing
C++ Passing ostream as parameter

I'm working on a homework project for a virtual rolodex that has called for a main class, a rolodex class, …

c++ parameter-passing ostream
How to pass a parameter along with h:commandButton

One of the most common approaches to change locale in JSF+Seam - with <h:selectOneMenu>: <h:…

jsf jsf-2 seam parameter-passing
What does &. (ampersand dot) mean in Ruby?

I came across this line of ruby code. What does &. mean in this? @object&.method

ruby syntax operators parameter-passing ruby-2.3
How to pass JavaScript variables as parameters to JSF action method?

I'm preparing some variables in JavaScript (in my specific case, I'd like to get GPS location): function getVars() { // ... var x = …

javascript jsf parameter-passing managed-bean
Sending data from nested fragments to parent fragment

I have a Fragment FR1 that contains several Nested Fragments; FRa, FRb, FRc. These Nested Fragments are changed by pressing …

android android-fragments parameter-passing android-nested-fragment
Passing parameters to Power BI filter programmatically

In my application I'm displaying a Power BI report. It already works, so there's no problems with showing any report …

filter parameter-passing powerbi powerbi-embedded
Java pass by reference

What is the difference between this 2 codes: Code A: Foo myFoo; myFoo = createfoo(); where public Foo createFoo() { Foo foo = new …

java parameter-passing terminology pass-by-reference pass-by-value
Forced naming of parameters in Python

In Python you may have a function definition: def info(object, spacing=10, collapse=1) which could be called in any of …

python function coding-style parameter-passing