Tagged Questions
2
votes
2answers
132 views
When to use keyword arguments aka named parameters in Ruby
Ruby 2.0.0 supports keyword arguments (KA) and I wonder what the benefits/use-cases are of this feature in context of pure Ruby, especially when seen in light of the performance penalty due to the ...
1
vote
1answer
240 views
Using named arguments with variable length un-named arguments in Python
I apologize if this question has already been asked/answered, I would have expected that to be the case but was unable to find any related questions...
I'd like to create a python function that takes ...