The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
54 views

Optional arguments with default value in Ruby

I would like to create a function that has optional arguments with default values def my_function(a = nil, b=nil, c=500) end and call the function with the arguments I would like to specify only ...
1
vote
2answers
35 views

Parsing mixed arguments in a script bash

I need to implement a script called with mixed (optional and non-optional) arguments for example - ./scriptfile -m "(argument of -m)" file1 -p file2 -u "(argument of -u)" in a random order. I've ...
7
votes
1answer
192 views

Why default arguments in F# (FSharpOption<T>) are reference types?

C# and F# has different implementation of the default (or optional) parameters. In C# language when you add default value to the argument you'll not change its underlying type (I mean type of the ...
1
vote
0answers
63 views

optional string parameter in extension method

I have a line of code that says string sendQueueName = ESResource.Service.TOPICA.Src(); The way the class is laid out is as follows:- public static class ESResource{ static ESResource() { ...
1
vote
2answers
33 views

Ruby on Rails: An optional argument makes me to repeat lines of code

I have following code fragment: if my_string.comment.blank? xml.string(:name => my_string.name) { xml.text(variation_value(my_string, variation_id)) } else xml.string(:name => ...
0
votes
2answers
49 views

Why is this $.getJSON call in the jquery documentation correct?

I am a little bit confused by the jQuery documentation. I am looking at this page describing $.getJSON. The code sample is: $.getJSON('ajax/test.json', function(data) { var items = []; ...
3
votes
1answer
104 views

Overriding a virtual function with optional arguments

Why is this printing 23 as output; my expectation was 33. Could somebody please shed some light on this. struct A { virtual void f() {cout << "1";} }; /* Private inheritance */ struct B : ...
2
votes
1answer
94 views

xUnit test engine's InlineDataAttribute + optional method parameters

Is it possible to make xUnit test work when you don't specify optional parameter values in InlineDataAttribute? Example: [Theory] [InlineData(1, true)] // works [InlineData(2)] // error void ...
0
votes
1answer
57 views

optional ofstream parameter in C++

How can I make an ofstream argument optional? bool LookingFor(std::string &mi_name, ofstream &my_file = std::cout) { my_file << xxx; ....... } the compiling error with the above ...
1
vote
3answers
90 views

Call a method after statements have been evaluated

This should be very easy to answer but I'm not even sure how to ask it properly, so I apologize in advance for my n00b-ness. I have struggled to paraphrase it for searches with no luck... Basically I ...
1
vote
2answers
217 views

check the order & validate arguments to shell script

I know similar questions may be asked on this ,but I am a total newbie to shell scripting & not finding help (may be I am not able to understand the technicalities). I have a simple question: I ...
3
votes
2answers
119 views

How to deal with ellipsis (…) in the presence of optional arguments?

I have a problem with ellipsis when I use optional arguments in my function definition. To clarify, I define following functions: func1 <- function (x) (x-2)^2 func3 <- function (fun, ...
0
votes
1answer
115 views

Python optional, positional and keyword arguments

This is a class I have: class metadict(dict): def __init__(self, do_something=False, *args, **kwargs) if do_something: pass ...
3
votes
3answers
114 views

Using optional arguments

I have a method with 2 optional parameters. public IList<Computer> GetComputers(Brand? brand = null, int? ramSizeInGB = null) { return new IList<Computer>(); ...
1
vote
3answers
193 views

argparse doesn't check for positional arguments

I'm creating a script that takes both positional and optional arguments with argparse. I have gone through Doug's tutorial and the python Docs but can't find an answer. parser = ...
1
vote
2answers
98 views

Optional Parameter in C# 4.0

List<DynamicBusinessObject> dbo = SearchController.Instance.GetSearchResultList(search, null, "date", startRow - 1, ucDataPager1.PageSize, state); The above line of code is calling the ...
1
vote
2answers
71 views

argparse: `$ python program.py --add some_name` . How to change `--add` into `add` while still being an optional argument?

I want this functionality: $ python program.py add Peter 'Peter' was added to the list of names. I can achieve this with --add instead of add like this: import argparse parser = ...
2
votes
2answers
66 views

Function argument: default value return of a function?

I have lots of functions with optional arguments, which on an omitted value gets its default value from a specified function, currently my code looks something like this: function get_user($user_id = ...
1
vote
1answer
211 views

Passing optional arguments from optparse

I'm trying to figure out how to pass optional arguments from optparse. The problem I'm having is if an optparse option is not specified, it defaults to a None type, but if I pass the None type into a ...
9
votes
4answers
2k views

Named tuple and optional keyword arguments

I'm trying to convert a longish hollow "data" class into a named tuple. My class currently looks like this: class Node(object): def __init__(self, val, left=None, right=None): self.val = ...
1
vote
1answer
387 views

Python: argparse optional arguments without dashes

I would like to have the following syntax: python utility.py file1 FILE1 file2 FILE2 where file1 and file2 are optional arguments. It is simple to make it working with this syntax: python ...
2
votes
8answers
689 views

php function arguments

I don't know how or where I got this idea in my head but for some reason I thought this was possible. Obviously after testing it doesn't work, but is there a way to make it work? I want to set $value2 ...
2
votes
1answer
409 views

How to call method with optional parameter list in JSF2 / EL 2.2

any idea how (if even possible) to call java method with optional parameters from JSF page? Iam using Java 7,JSF 2.1, EL 2.2 (Glassfish 3.1.2). Thanks in advance... I got this exception ...
3
votes
3answers
623 views

Generic methods and optional arguments

Is it possible to write similar construction? I want to set, somehow, default value for argument of type T. private T GetNumericVal<T>(string sColName, T defVal = 0) { string ...
15
votes
1answer
195 views

Can you explain me this strange behaviour of c# with optional arguments? [duplicate]

Possible Duplicate: C# optional parameters on overridden methods This is the output of the following code: Peter: -1 Peter: 0 Fred: 1 Fred: 1 Can you explain me why the call of Peter ...
3
votes
2answers
185 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 ...
3
votes
1answer
91 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 ...
0
votes
1answer
50 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 ...
10
votes
4answers
2k 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. ...
3
votes
2answers
234 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
1answer
1k 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 ...
1
vote
1answer
138 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 ...
0
votes
1answer
1k 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
373 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 ...
1
vote
4answers
401 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 ...
4
votes
4answers
398 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 ...
1
vote
1answer
202 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
393 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): ...
0
votes
1answer
216 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 ...
10
votes
3answers
466 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 ...
2
votes
0answers
60 views

why is this optional method argument shared across different python objects? [duplicate]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument can anyone explain me this? class Strange(object): def mutate(self, x=[]): ...
5
votes
3answers
387 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 ...
0
votes
1answer
25 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 ...
1
vote
1answer
271 views

Naming Optional Parameters in Visual Basic

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 ...
43
votes
4answers
10k views

C# 4.0 optional out/ref arguments

Does C# 4.0 allow optional out or ref arguments?
20
votes
5answers
11k 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 ...
3
votes
3answers
495 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) ...
7
votes
3answers
5k 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 ...
21
votes
3answers
18k 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()): ...
1
vote
3answers
146 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 ...

1 2