Tagged Questions
The optional-arguments tag has no wiki summary.
18
votes
3answers
3k views
9
votes
1answer
3k views
getopt does not parse optional arguments to parameters
In C, getopt_long does not parse the optional arguments to command line parameters parameters.
When I run the program, the optional argument is not recognized like the example run below.
$ ./respond ...
8
votes
3answers
317 views
Is there a way to use two '…' statements in a function in R?
I want to write a function that calls both plot() and legend() and it would be ideal if the user could specify a number of additional arguments that are then passed through to either plot() or ...
5
votes
5answers
3k views
LaTeX Optional Arguments
How do you create a command with optional arguments in LaTeX?
Something like:
\newcommand{\sec}[2][]{
\section*{#1
\ifsecondargument
and #2
\fi}
}
}
Then, I can ...
5
votes
3answers
5k views
Python optional parameters
Guys, I just started python recently and get confused with the optional parameters, say I have the program like this:
class B:
pass
class A:
def __init__(self, builds = B()):
...
4
votes
3answers
174 views
Can I default a function argument to the value of __FILE__ at the caller?
In C++, can I have a defaulted argument to a function which defaults to __PRETTY_FUNCTION__, __FILE__, and __LINE__ as defined at the point of the caller and not the point the defaults are supplied in ...
4
votes
3answers
1k views
VB - How do I test if optional arguments are supplied or not?
How do I test if optional arguments are supplied or not? -- in VB6 / VBA
Function func (Optional ByRef arg As Variant = Nothing)
If arg Is Nothing Then <----- run-time error 424 "object ...
3
votes
2answers
116 views
Propagating optional arguments
The following code does not compile.
type A(?arg) =
member __.Arg : string option = arg
type B(?arg) =
inherit A(arg) //ERROR expected type string but has type 'a option
I assume this is ...
3
votes
3answers
262 views
Optional argument cannot be erased?
I wanted to have a tail-recursive version of List.map, so I wrote my own. Here it is:
let rec list_map f l ?(accum=[])=
match l with
head :: tail -> list_map f tail ~accum:(head :: accum)
...
2
votes
1answer
68 views
Optional arguments?
Is there a way to declare an argument as "optional" in the Go programming language?
Example of what I mean:
func doSomething(foo string, bar int) bool {
//...
}
I want the parameter bar to be ...
2
votes
1answer
37 views
Matlab Arbitrary Output Argument Combination Disgarding
Is it possible to check whether the Matlab function output argument N is disgarded by its caller (~ given in call) or not provided one of its N+K, K>1, is defined, that is when nargout > N.
For ...
2
votes
4answers
86 views
Javascript: is the arguments array deprecated?
Most sites say "callee" as a property of Function.arguments is deprecated. But some sites go further and say the whole of Functions.argument is deprecated E.g. ...
2
votes
1answer
170 views
Passing optional path arguments to ant
I have an ant task that uses an apply task to run a script on a group of files.
I have a directory structure resultant of something like this:
mkdir -p a/{b,c,d,e}/f
Normally (if I pass no ...
2
votes
4answers
141 views
Assign pass to a function in Python
I have a piece of code that defines a function that takes a function as an argument, like so:
def stuff(n, f):
f(n)
Now, I want to provide some default value of f that does nothing. So I figured ...
2
votes
0answers
55 views
why is this optional method argument shared across different python objects? [closed]
Possible Duplicate:
“Least Astonishment” in Python: The Mutable Default Argument
can anyone explain me this?
class Strange(object):
def mutate(self, x=[]):
...
2
votes
5answers
304 views
how to use a function with a non-optional argument defined as the third
I'm using someone elses class and that person has defined a function with five arguments.
in Sentry.php:
function checkLogin($user = '',$pass = '',$group = 10,$goodRedirect = '',$badRedirect = '')
...
2
votes
5answers
2k views
Small Python optional arguments question
I have two functions:
def f(a,b,c=g(b)):
blabla
def g(n):
blabla
c is an optional argument in function f. If the user does not specify its value, the program should compute g(b) and that ...
1
vote
1answer
52 views
Optional arguments and InteropServices
I'm using for the firs time optional arguments but I cannot understand difference between those two method definitions:
private void method1([Optional, DefaultParameterValue(string.Empty)] string ...
1
vote
4answers
184 views
Naming practice for optional argument in python function
Is it OK to give the optional argument in a python function the same name as an outside variable?
It seems to work fine as functions f and g defined below give the same output. However, is this ...
1
vote
1answer
106 views
Ordered options in Python's optparse
First of all, I know optparse is deprecated since version 2.7, but I only have Python 2.3 available in the machine I'm working.
The question is how to know the order in which the options were given ...
1
vote
2answers
234 views
access decorator arguments inside the decorators wrapper function
im trying to access my decorators arguments inside the wrapper function with no luck.
what i have is:
def my_decorator(arg1=False, arg2=None):
def decorator(method):
...
1
vote
3answers
119 views
What is the preferred design of a template function that requires a default parameter value?
I'm currently working on cleaning up an API full of function templates, and had a strong desire to write the following code.
template <typename T, typename U, typename V>
void doWork(const ...
0
votes
1answer
35 views
Why doesn't using nonlocal scope variable as default value for parameter work?
Code would explain this much better :)
def a():
x=0
def b(z=x):
print("X: %d, Z: %d" % (x,z,))
x=5
b()
Result:
X: 5, Z: 0
What's going on here?
(Ok, now I've figured it ...
0
votes
1answer
432 views
ASP.NET MVC DefaultValue attribute vs C# Optional Argument
What is the difference between this ASP.NET MVC2 method signature, which uses the DefaultValue attribute:
public ActionResult DoStuff([DefaultValue(MyEnum.Alpha)] MyEnum enumToUse, bool printPage = ...
0
votes
2answers
241 views
Find out whether ActionScript Function has varargs / optional arguments using reflection?
Given an ActionScript Function object, is there any way to determine whether that function has one or more optional parameters, or vararg parameters? The length property seems to return the minimum ...
0
votes
1answer
159 views
AS3: Testing For Optional Arguments and Combinations
I'm revisiting some old code that filters XML, but this could easily apply to the parameters of a method (the way I'm using it, it essentially is). This is a problem I feel like I run into a lot and ...
0
votes
1answer
24 views
Is there a way to use default arguments that are the result of a function call in VB.NET?
I have a whole slew of database access functions which assume a particular connection string. Within my application I call
myList = DB_MyTable.GetTableItems()
and within GetTableItems() I have ...
0
votes
0answers
26 views
Naming Optional Parameters in VSB
In Visual Basic, I have Functions with a lot of Optional arguments.
I would like to be able to pass just a few of these Optional arguments
to a Function without having to use numerous commas and ...