Top "Arguments" questions

An argument is a value passed to a function, procedure, or command line program.

flutter passing multiple data with getx

I want to Pass multiple data from one screen to another screen with Get package.

flutter get arguments send flutter-getx
Why do arrow functions not have the arguments array?

function foo(x) { console.log(arguments) } //foo(1) prints [1] but var bar = x => console.log(arguments) gives the following error …

javascript lambda ecmascript-6 arguments anonymous-function
Pass argument into Powershell

I have a powershell script that completes some tasks in Active Directory and MS Exchange. I need to pass in …

powershell parameters scripting arguments powershell-5.0
Passing list to Tcl procedure

What is the canonical way to pass a list to a Tcl procedure? I'd really like it if I could …

list arguments tcl
C Programming: Forward variable argument list

I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes …

c variables arguments printf forward
Cannot pass an argument to python with "#!/usr/bin/env python"

I needed to have a directly executable python script, so i started the file with #!/usr/bin/env python. However, …

python arguments shebang
What Does Using A Single Pipe '|' In A Function Argument Do?

Take for instance the following code: phpinfo(INFO_MODULES | INFO_ENVIRONMENT | INFO_VARIABLES); A single argument is being used, but …

php function arguments bitwise-operators
How to pass data from a fragment to a dialogFragment

I know that this was asked before, but I dont quite understand how to implement it. I have a fragment "…

android arguments fragment
Given an array of arguments, how do I send those arguments to a particular function in Ruby?

Forgive the beginner question, but say I have an array: a = [1,2,3] And a function somewhere; let's say it's an instance …

ruby arrays function arguments
c++ type/value mismatch at argument 1 in template parameter list

#include <iostream> using namespace std; template<class T> class people{ public: virtual void insert(T item)=0; …

c++ templates arguments type-mismatch