Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
3answers
545 views

Passing lambda functions as named parameters in C#

Compile this simple program: class Program { static void Foo( Action bar ) { bar(); } static void Main( string[] args ) { Foo( () => Console.WriteLine( "42" ) ...
11
votes
7answers
379 views

Are Options and named default arguments like oil and water in a Scala API?

I'm working on a Scala API (for Twilio, by the way) where operations have a pretty large amount of parameters and many of these have sensible default values. To reduce typing and increase usability, ...
8
votes
1answer
269 views

Scala Copy() Odd Behavior

I'm experiencing an odd bit of behavior when I use the auto-generated copy() method that was added in Scala-2.8. From what I've read, when you declare a given class as a case-class, a lot of things ...
7
votes
3answers
260 views

Is it possible for an optional argument value to depend on another argument in Scala

Does anyone know if something like this is possible in Scala: case class Thing(property:String) def f(thing:Thing, prop:String = thing.property) = println(prop) The above code doesn't compile; ...
7
votes
2answers
191 views

Is there a programming language that performs currying when named parameters are omitted?

Many functional programming languages have support for curried parameters. To support currying functions the parameters to the function are essentially a tuple where the last parameter can be omitted ...
6
votes
3answers
608 views

Scala Properties Question

I'm still learning Scala, but one thing I thought was interesting is that Scala blurs the line between methods and fields. For instance, I can build a class like this... class MutableNumber(var ...
6
votes
2answers
170 views

compiler warning on (ambiguous) method resolution with named parameters

One question regarding whether the following code should yield a compiler warning or not (it doesn't). It declares two methods of the same name/return type, one has an additional named/optional ...
6
votes
3answers
392 views

Optional named arguments in Mathematica

What's the best/canonical way to define a function with optional named arguments? To make it concrete, let's create a function foo with named arguments a, b, and c, which default to 1, 2, and 3, ...
5
votes
1answer
90 views

C# Named parameters, Inheritance and overloading surprise

I was going through some presentation regarding C# 4.0 and in the end the presenter posted a quiz with the following code. using System; class Base {     public virtual void Foo(int x = 4, int y = ...
5
votes
2answers
447 views

How did they implement this syntax in the Massive Micro-ORM, multiple args parameters?

Here on this page, Scott Hanselman shows two examples from Micro-ORMs Dapper and Massive, and the Massive-example caught my interested, because I don't see how they could implement that syntax. The ...
5
votes
2answers
608 views

Python, default keyword arguments after variable length positional arguments

I thought I could use named parameters after variable-length positional parameters in a function call, but I get a syntax error when importing a python class I'm writing with the following "get" ...
5
votes
2answers
160 views

How does Scala know what method to invoke ( named parameters )

class Algo { def a( a : String = "Hola ", b : String = "adios" ) { print( a ) print( b ) } def a() { print ("Uh?") } } object Algo { def main( args : ...
5
votes
11answers
4k views

C# Named parameters to a string that replace to the parameter values

I want in a good performance way (I hope) replace a named parameter in my string to a named parameter from code, example, my string: "Hi {name}, do you like milk?" How could I replace the {name} by ...
4
votes
2answers
398 views

Use Curiously Recurring Template Pattern (CRTP) with additional type parameters

I try to use the Curiously Recurring Template Pattern (CRTP) and provide additional type parameters: template <typename Subclass, typename Int, typename Float> class Base { Int *i; ...
4
votes
1answer
201 views

Is there any tools to help me refactor a method call from using position-based to name-based parameters

I wish to transform code like: var p = new Person("Ian", "Smith", 40, 16) To: var p = new Person(surname: "Ian", givenName:"Smith", weight:40, age:16) As a first step in making the code more ...
4
votes
1answer
471 views

How can I pass named arguments to a Rake task?

Is there a way to pass named arguments to a Rake task without using environment variables? I am aware that Rake tasks can accept arguments in two formats: Environment Variables $ rake my_task ...
4
votes
3answers
188 views

How to use named parameters in Python methods that are defaulting to a class level value?

Usage scenario: # case #1 - for classes a = MyClass() # default logger is None a = MyClass(logger="a") # set the default logger to be "a" a.test(logger="b") # this means that logger will be "b" only ...
4
votes
2answers
130 views

Optional Specification of some C# Optional Parameters

Suppose you have a method with the following signature: public void SomeMethod(bool foo = false, bool bar = true) { /* ... */ } When calling this method, is there a way to specify a value for bar ...
4
votes
2answers
3k views

.Net 4.0, named and optional parameters, and WCF

so .Net 4 added named and optional params which are pretty sweet..I don't need to make as many 1 line overload methods. Will that work over WCF?
4
votes
4answers
2k views

Named parameters in JDBC

Are there named parameters in JDBC instead of positional ones, like the @name, @city in the ADO.NET query below? select * from customers where name=@name and city = @city
4
votes
4answers
1k views

Named/optional parameters in Delphi?

In one of the Delphi demo applications, I've stumbled upon some syntax that I didn't know the Delphi compiler accepted: // ......\Demos\DelphiWin32\VCLWin32\ActiveX\OleAuto\SrvComp\Word\ // ...
4
votes
5answers
763 views

Determine if a named parameter was passed

I would like to know if it is possible to determine if a function parameter with a default value was passed in Python. For example, how does dict.pop work? >>> {}.pop('test') Traceback (most ...
3
votes
1answer
404 views

How to specify a JPA named parameter surrounded by wildcards?

How would I specify a JPA query like: Query q = em.createQuery( "SELECT x FROM org.SomeTable x WHERE x.someString LIKE '%:someSymbol%'" ); followed by: q.setParameter("someSymbol", ...
3
votes
2answers
122 views

Is there a nicer way to do c named arguments?

I'm trying to implement a flexible debug macro/function lib and named/optional arguments seem like the best way to implement the functions. Is there a nicer way to do named arguments in c then the ...
3
votes
5answers
119 views

Is it a bad idea to name parameters like this in PHP?

I've been doing a lot of Objective-C programming lately, and now that I'm coming back to PHP, I have to be honest, I miss the named parameters (at first I hated them, now I love them, go figure). ...
3
votes
2answers
281 views

Named Parameters in Ruby Structs

I'm pretty new to Ruby so apologies if this is an obvious question. I'd like to use named parameters when instantiating a Struct, i.e. be able to specify which items in the Struct get what values, ...
3
votes
4answers
373 views

IoC container that supports constructor injection with Scala named/default arguments?

I would prefer using constructor injection over JavaBean property injection if I could utilize the named and default arguments feature of Scala 2.8. Any IoC-containers exists that supports that or ...
3
votes
2answers
405 views

sqlite / python - named parameters without enclosing quotes?

When using prepared statements with named parameters in SQLite (specifically with the python sqlite3 module http://docs.python.org/library/sqlite3.html ) is there anyway to include string values ...
3
votes
6answers
3k views

Python normal arguments vs. keyword arguments

Could someone explain the differences to me? Aren't all arguments "keyword arguments"? They all have names, and can all be assigned by that name instead of the position. Do keyword arguments mean ones ...
3
votes
3answers
527 views

Shouldn't C# 4.0's new “named parameters” feature be called “named arguments”?

I suppose there could be historical reasons for this naming and that other languages have similar feature, but it also seems to me that parameters always had a name in C#. Arguments are the unnamed ...
2
votes
2answers
64 views

How to use Optional/Named parameters in C# 4.0

For the life of me I seemingly can not understand what Optional Parameters are used for. By that, I mean, what kind of programs would they be used in, and how? The same thing applies to Named ...
2
votes
1answer
237 views

Hibernate: Can't use a named parameter for OFFSET and LIMIT?

I'm trying to get the following NamedQuery to work: @NamedQuery(name="MyEntity.findByUser", query="SELECT m FROM MyEntity m WHERE m.owner = :user OFFSET :offset LIMIT :limit") The problem is that ...
2
votes
5answers
115 views

Pass Named Parameter Conditionally

I have a struct which takes 3 named parameters in to the constructor... public struct MyData { private readonly double _value1; private readonly double _value2; private readonly double ...
2
votes
1answer
149 views

Can I use a named argument when calling a method that has a lambda expression for a parameter?

I'm playing around with named arguments and optional parameters in C# 4. In particular, I'm trying to use named arguments when calling the HtmlHelpers in ASP.NET MVC like so... ...
2
votes
2answers
421 views

Scala String format named parameters (Winner: Ugliest Code)

I came up with a trick to use named parameters in Scala. Is there a better way? What are the downsides? <x> |CREATE OR REPLACE FUNCTION myFunction({columns.map(column => column.name). ...
2
votes
2answers
169 views

Named arguments of a constructor in a type using F#

Consider the following code: type Test(a) = member o.A = a let test = Test(a = cos 5.) let test2 = Test(a = 5. |> cos) // ERROR let test3 = Test(a = (5. |> cos)) Test2 line gives an error: ...
2
votes
1answer
88 views

.Net Parameter Attribute to make named/optional Parameter visible only internally/private?

Out of curiosity, is there a way to write a method e.g. like this: public static MyType Parse(string stringRepresentation, [Internal] bool throwException = true) { // parsing logic here that ...
2
votes
1answer
580 views

How to set named argument for string.Format?

I have C# error when calling: string.Format(format:"abbccc", 1,22); The error is "Named argument specifications must appear after all fixed arguments have been specified" How can I fix this? ...
2
votes
3answers
1k views

Java named parameter's name (for Oracle JDBC function result)

I'm going to call a function, and set some parameters by name, example: Connection c = null; ResultSet rs = null; String query; PreparedStatement ps; CallableStatement cs = null; ...
2
votes
4answers
267 views

Simulate named parameters in Java

I write a little web API which should it make easy to create URIs. Each resource class should contain a method createURI which takes the needed parameters. This method should use a helper method, ...
2
votes
2answers
118 views

Complicated .NET factory design

I'm planning to ask a fairly elaborate question that is also something of a musing here, so bear with me... I'm trying to design a factory implementation for a simulation application. The simulation ...
2
votes
1answer
95 views

C# 4.0 Named Parameters - should they always be used when calling non-Framework methods?

I really this is a hugely subjective topic but here is my current take: When calling methods which do not form part of the .NET BCL named parameters should always be used as the method signatures may ...
2
votes
3answers
479 views

How do you curry the 2nd (or 3rd, 4th, …) parameter in F# or any functional language?

I'm just starting up with F# and see how you can use currying to pre-load the 1st parameter to a function. But how would one do it with the 2nd, 3rd, or whatever other parameter? Would named ...
2
votes
1answer
206 views

Named parameters with Python C API?

How can I simulate the following Python function using the Python C API? def foo(bar, baz="something or other"): print bar, baz (i.e., so that it is possible to call it via: >>> ...
2
votes
2answers
280 views

Does C# 2.0-3.0 have named arguments support for methods?

Is there a way to have named arguments like in perl/python for example object.method(arg1 => value1, arg2 => value2, arg3 => 0); in C# prior to C# 4.0?
2
votes
4answers
3k views

ASP Classic Named Paramater in Paramaterized Query: Must declare the scalar variable

I'm trying to write a parameterized query in ASP Classic, and it's starting to feel like i'm beating my head against a wall. I'm getting the following error: Must declare the scalar variable ...
2
votes
4answers
1k views

Emulating named function parameters in PHP, good or bad idea?

Named function parameters can be emulated in PHP if I write functions like this function pythonic(array $kwargs) { extract($kwargs); // .. rest of the function body } // if params are ...
1
vote
1answer
30 views

Java debugging info not generated for Interfaces

I'm trying to generate class files with the "-g:vars" option. This is working fine for classes and I get the parameter name as it is in the source. But this doesn't seem to be working for Interfaces. ...
1
vote
1answer
168 views

SASS Mixin Arguments

I am passing multiple arguments in the mixin below. I am calling the mixin from multiple places in my CSS files; sometimes all the args need to be specified, other times only a few. Ruby allows you to ...
1
vote
2answers
458 views

Adding days to named parameter of type Date in HQL

I've got an oracle database in which warehouses are stored that are open only on one given day in a week, e.g. 'monday' or 'thursday'. The day the warehouse is open is stored as an integer. Sunday ...

1 2