The optional-parameters tag has no wiki summary.
2
votes
1answer
16 views
Multiple capture groups - all optional
I know this (or similar) has been asked a hundred times - but I really need help now :D
The strings the regex should match.
Note: n is in the range of INTEGER_MIN - INTEGER_MAX
{number}
...
0
votes
0answers
11 views
How to write a \newenvironment with a conditional structure and one optional parameter [migrated]
I would like to define a new environment with an optional parameter. Currently, I have
\theoremstyle{plain}
\newtheorem{prop}{Proposition}
\newenvironment{propExt}[1][]{\ifx!#1! \begin{prop}
\else ...
1
vote
1answer
32 views
Parameter passing in R when interior function arguments are dependent on optional parameters
I'm working in R and need to pass arguments to a function so that they can be used as arguments when calling another function within the original. In the example below you can see that I'm interested ...
0
votes
3answers
40 views
Optional query parameters in SQL Server
I want to fetch data from a SQL Server database using values from a dropdown list.
My query is
select Age,City,State,Caste,IncomeMin,IncomeMax from Ruser
where (Age between '" + ...
0
votes
3answers
54 views
Optional parameters: constants vs direct declaration in method? [closed]
What is the better approach for methods with optional parameters:
Declare constant and use it as default parameter:
Or declare default parameters in method:
I'm sorry for images instead of ...
0
votes
3answers
30 views
How to work with optional parameters that are set to None
With named parameters, how can I tell the receiver method to use the "not supplied" version of the parameter? Sending in None does not work. The following is my specific code, note especially the ...
2
votes
3answers
52 views
Optional Parameters, Good or Bad?
I am writing and browsing through a lot of methods in the project im working with and as much as I think overloads are useful I think that having a simple optional parameter with a default value can ...
2
votes
2answers
45 views
Trying to understand optional, list and named arguments in Python
I'm a beginner at Python, trying to understand function arguments and their types and orders.
I tried to experiment a little with the different kinds of argument and here's my experiment
def main():
...
2
votes
1answer
28 views
Restrict parameter count for optional parameters in php
From the php documentation i came across the following function:
string number_format ( float $number , int $decimals = 0 ,
string $dec_point = '.' , string $thousands_sep = ...
0
votes
2answers
81 views
Parameter passing in C/C++ [duplicate]
I have two questions here.
Q1:
What will the following program output(on a 32-bit little-endian machine):
int main()
{
long long a = 0x1, b = 0x2, c = 0x3;
printf("a = %d, b = %d, c = ...
0
votes
1answer
46 views
parameter list (“*”) with lazy “by-name” parameters?
I can:
scala> def foo( f: => String) = println(f)
foo: (f: => String)Unit
and I can:
scala> def foo( f: String*) = f.map(println)
foo: (f: String*)Seq[Unit]
but I can't:
scala> ...
1
vote
2answers
130 views
Maybe class and optional parameters
I have an implementation of a Maybe / Option class in c#. Basic implementation is
public delegate Maybe<TOutput> Converter<in TInput, out TOutput>(TInput input);
public delegate TOutput ...
0
votes
1answer
25 views
What Open source CMS should i use? [closed]
First of all, thanks for reading (and awnser) my question.
I'm creating a webiste with some functions and i need some help to know the right option of CMS, can you guys help me? The Website need to ...
2
votes
3answers
54 views
Difference between ParameterInfo.IsOptional and ParameterInfo.HasDefaultValue?
They both sound similar. From msdn:
ParameterInfo.IsOptional
Gets a value indicating whether this parameter is optional.
This method depends on an optional metadata flag. This flag can be
...
3
votes
1answer
35 views
Difference between ParameterInfo.DefaultValue and ParameterInfo.RawDefaultValue
This is a follow-up question of How do I get default values of optional parameters?
From documentation, DefaultValue:
Gets a value indicating the default value if the parameter has a
default ...
2
votes
1answer
46 views
How do I get default values of optional parameters?
I have a constructor with optional parameters. I would like to have an expression to invoke that constructor without providing the optional arguments (I mean let the object be constructed with default ...
0
votes
1answer
253 views
Passing sets and optional parameters to a stored procedure T-SQL - ASP.NET
A big task for me. I have a few questions. You guys already helped me so much, but I get one difficulty after another and progressing unbelievably slowly. These questions will better describe my ...
0
votes
2answers
34 views
python argparse strore_true and store optional option in one argument [duplicate]
I need to recognize if was given argument alone or with optional string or neither
parser.add_argument(???)
options = parser.parse_args()
so
./prog.py --arg
should store '' into options.arg,
...
1
vote
1answer
109 views
Can I have a variable number of URI parameters or key-value pairs in Laravel 4?
I've got a shopping cart that I'd like to be able to pass a variable amount of optional parameters. Things like: sort by, filter by, include/exclude etc. So the URL may be:
/products
...
1
vote
2answers
36 views
Which parameter set has been used?
I've used advanced parameter handling to support multiple parameter sets. Is there any pre-defined variable or way to determine which parameter set has been used to call the script?
e.g. something ...
1
vote
1answer
68 views
When overloading methods in Java, where do you calculate aditional parameter data?
I often find myself in situations where I have a method signature like this:
public returnType doStuff(mandatoryParam, calculableParam1, calculableParam2);
In these situations I sometimes want to ...
1
vote
3answers
2k views
SQL Server stored procedure parameters
I am developing a framework, where in I am a calling stored procedure with dynamically created parameters. I am building parameter collection at the runtime.
The problem occurs when I am passing a ...
0
votes
1answer
81 views
Optional Parameters in MAIN() for JAVA
Is it possible to implement optional parameters for a Java program?
I tried searching this up, but all that came up was for overloading methods in Java, not specifically the main().
What I'm trying ...
1
vote
2answers
80 views
Ruby Optional Parameters and Multiple Parameters
I am trying to set the first argument to a method as being optional, followed by any number of args. For example:
def dothis(value=0, *args)
The issue I am running into is that it doesn't seem like ...
2
votes
1answer
139 views
Dynamic parameter accessing default value
I have a PowerShell function that takes an optional parameter, validated using a ValidateSetAttribute, and based on that value it adds another dynamic parameter. However, in strict mode, when trying ...
2
votes
2answers
406 views
Using optional multi-value textbox as dataset filter
I have a report which returns list of product names and other product specs. This report currently has different search options. My users now also want to be able to search by product number by ...
0
votes
3answers
54 views
Easier way to pass optional function parameters using array
When I create a function that has optional parameters, I have to think about which one is more likely to be passed the most and that determines the order in which I specify them in the function ...
0
votes
2answers
115 views
dynamic AND optional method parameters
So C# supports optional parameters:
void MethodName(string param = "optional!") { }
And dynamic method params:
void MethodName(dynamic param) { }
But unfortunately, you cannot use them together ...
0
votes
3answers
214 views
Sybase - Use parameter for IN clause
I need a way to perform the following pattern in Sybase:
SELECT * FROM tbl WHERE x IN (@list)
The select would be a part of a stored procedure that is passed values from a web form. I would like to ...
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 ...
2
votes
4answers
153 views
Python: how to check whether optional function parameter is set
Is there an easy way in Python to check whether the value of an optional parameter comes from its default value, or because the user has set it explicitly at the function call?
1
vote
2answers
94 views
Multi-parameter function - Correct usage of *args / **kwargs
I have a function like this one:
def hexify_string(aString):
#code for string2hexa conversion
...and I want to have a function who accepts one or more (quantity undefined) parameters, and to ...
0
votes
0answers
48 views
Youtube: Most recent user video URL
So I started writing code and I thought "I bet they already thought of this"
Is there a parameter something like this
http://www.youtube.com/user/austinrugbyclub/videos?Most_recent=1&autoplay=1
...
0
votes
3answers
104 views
Optional parameters together with an array of parameters
I have a logging interface which I extend with some helpful extension methods as to make it possible for me to pass in a format and a list of arguments to avoid having to use string format every time ...
1
vote
3answers
93 views
js sort() custom function how can i pass more parameters?
I have an array of objects i need to sort on a custom function, since i want to do this several times on several object attributes i'd like to pass the key name for the attribute dinamically into the ...
1
vote
3answers
110 views
Is there a perl module equivalent to python's optparse.OptionParser?
I have a new script that I need to write in perl, to leverage our perl codebase (no, I can't convert it, not yet anyway). Our coding standards dictate Getopt::Long::GetOptions() but I realize my ...
3
votes
1answer
137 views
Combining CallerMemberName with params
Right now (C# 4.0) our logging method looks like
public void Log(string methodName, string messageFormat, params object[] messageParameters)
where the logger does the string formatting, so that the ...
2
votes
2answers
288 views
Doxygen - declare parameter as optional
I am documenting a codebase using Doxygen and was wondering if there is a keyword for declaring an argument to a function to be optional. Something like:
/*!
\fn int add(int a, int b=0)
\brief adds ...
6
votes
2answers
180 views
Is it possible to use optional/default parameters in a lambda expression in c#?
Is there a way to use optional arguments (default parameters) with lambda expressions in c#? I have read through the documentation but can find nothing to say one way or the other.
To illustrate, I ...
0
votes
3answers
91 views
Python get string right after argument switch
I have a script that goes using os.walk to go down a directory structure and matching files by extension and copies files to another location.
This is what i have for the file copy:
...
2
votes
1answer
194 views
boost function with optional parameters
I have a map containing boost::function values, as defined below:
std::map <std::string, boost::function<std::string (std::string, int)> > handlers;
Let us say I define the following ...
1
vote
1answer
62 views
How to allow default initializer overload for getter helper
I decided to add custom Get/SetValue(with INotifyPropertyChanged) helper functions in my ViewModelBaseClass similar to the type safe method mentioned here. But I want to add optional initializer to ...
0
votes
1answer
79 views
php mysqli functions insisting on optional parameters
All of my mysqli functions are not accepting empty parameters. When I do so I get the following error (example):
Warning: mysqli_close() expects exactly 1 parameter, 0 given...
When I use ...
4
votes
2answers
118 views
Get rest of the string to the end with mb_substr() and still set encoding
With substr() you can omit the third parameter to get the whole rest of the string:
substr('abcdefg', 2) // returns "cdefg"
You can't do the same with mb_substr():
mb_substr('abcdefg', 2, null, ...
1
vote
1answer
73 views
htaccess internal errors with using (escaped or unescaped) dots
Maybe I'm doing something stupid, but I can't get rid of an issue with htaccess.
I'm trying to match a function name in a documentation site and I'm getting errors I can't understand. I must point ...
2
votes
3answers
99 views
Named parameters in method signature
In C# - Optional parameters - creates a completion to the other un-supplied parameters.
so if I write:
void Go(int a, bool isFalse = true)
and call Go(a)
it actually emit il code for Go(a, true).
...
30
votes
1answer
2k views
Method Overriding and Optional Parameters
Would someone care to explain how this code produces the folowing output?
using System;
namespace ConsoleApplication1
{
class Test
{
public override string ToString() { return ...
-1
votes
1answer
173 views
Baked Optional Parameters and WebService calls in C#?
AFAIK:
Adding an optional parameter to a public method that’s called from
another assembly requires recompilation of both assemblies— just as
though the parameter were mandatory.
I was ...
2
votes
1answer
102 views
MVC Routing get rid of /Index in URL
I have a dynamic list of ActionLinks generated at run time like this:
@Html.ActionLink(x.Name, "Index", "User", new { x.ID }, null)
so I'm hitting the Index method on the User controller.
I also ...
10
votes
5answers
583 views
C# - Calling a struct constructor that has all defaulted parameters
I ran into this issue today when creating a struct to hold a bunch of data. Here is an example:
public struct ExampleStruct
{
public int Value { get; private set; }
public ExampleStruct(int ...





