Tagged Questions

36
votes
9answers
1k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type …
30
votes
24answers
3k views

Best Practice: Should functions return null or an empty object?

What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other? Consider this: public UserEntity …
21
votes
4answers
5k views

How do you pass a function as a parameter in C?

I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
20
votes
5answers
568 views

Arguments or parameters?

I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world. What's the correct convention for their use?
16
votes
5answers
742 views

What is the difference between a ‘closure’ and a ‘lambda’?

Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused. And now that we're here, how do they differ from a regular function?
14
votes
11answers
2k views

Why C# is not allowing non-member functions like C++

C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports …
14
votes
6answers
1k views

Javascript curry - what are the practical applications?

I don't think I've grokked currying yet. I understand what it does, and how to do it. I just can't think of a situation I would use it. Where are you using currying in javascript (or where are the …
13
votes
28answers
1k views

JavaScript Collection of one-line Useful Functions

This is a question to put as many interesting and useful JavaScript functions written in one line as we can. I made this question because I'm curious how many people around like the art of one-Line …
12
votes
11answers
1k views

Is it possible to translate a user-entered mathematical equation into C# code at runtime?

I would like to allow the user to enter any equation, like the following, into a text box: x = x / 2 * 0.07914 x = x^2 / 5 And have that equation applied to telemetry data that is coming from a …
12
votes
18answers
2k views

What is the difference between a method and a function

I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons. I am having trouble getting my head …
11
votes
10answers
692 views

How does the friend keyword (Class/Function) break encapsulation in C++?

Some programmer said that, "a friend function break the encapsulation in C++". and some programmer also said, "Friend functions do not break encapsulation; instead they naturally extend the …
11
votes
12answers
2k views

Elegant ways to return multiple values from a function

It seems like in most mainstream programming languages, returning multiple values from a function is an extremely awkward thing. The typical solutions are to make either a struct or a plain old data …
10
votes
7answers
177 views

A question about referencing functions in Javascript

The problem: I have a jQuery heavy page that has a built in admin interface. The admin functions only trigger when an admin variable is set. These functions require a second library to work properly …
10
votes
9answers
2k views

What is the naming convention in Python for variable and function names?

Coming from a C# background the naming convention for variables and method names are usually either CamelCase or Pascal Case: // C# example string thisIsMyVariable = "a" public void ThisIsMyMethod() …
10
votes
6answers
797 views

Is there a better way to do optional function parameters in Javascript?

I've always handled optional parameters in Javascript like this: function myFunc(requiredArg, optionalArg){ optionalArg = optionalArg || 'defaultValue'; //do stuff } Is there a better way to …

1 2 3 4 5 35 next
15 30 50 per page