5
votes
5answers
217 views
JavaScript equivalent of Python’s __setitem__
var obj = {}
obj.__setitem__ = function(key, value){
this[key] = value * value
}
obj.x = 2 // 4
obj.y = 3 // 9
JavaScript doesn't have __setitem__ and this example obviously …
1
vote
1answer
81 views
What does Brendan Eich mean when he speaks about adding sugar and macros to JavaScript?
I'm currently reading Coders at Work, and I'm at the chapter interviewing Brendan Eich. It's a little dense compared to the preceding chapters, to say the least. Around page 144, h …
5
votes
13answers
506 views
How useful is C#’s ?? operator?
So I have been intrigued by the ?? operator, but have still been unable to use it. I usually think about it when I am doing something like:
var x = (someObject as someType).someMe …
2
votes
3answers
62 views
sql: BETWEEN v1 AND v2
Is there a difference in the order of v1 and v2 in a BETWEEN query on SQL Server?
SELECT *
FROM table
WHERE col BETWEEN v1 AND v2
currently I don’t get any results if v1 is b …
3
votes
2answers
137 views
Syntactic sugar for compile-time object creation in Scala
Lets say I have
trait fooTrait[T] {
def fooFn(x: T, y: T) : T
}
I want to enable users to quickly declare new instances of fooTrait with their own defined bodies for fooFn. …
1
vote
4answers
137 views
Code Generation based on method Attributes
I was reading through some articles on Caching and Memoization and how to implement it easily using delegates and generics. The syntax was pretty straightforward, and it is surpris …
0
votes
5answers
105 views
Abbreviation for PHP’s array()
I don't know how about you, but I'm not very fond of the way arrays are constructed in PHP. I have this feeling that I use array keyword way too often and that array($k => $v) o …
2
votes
5answers
126 views
WITH statement in Java
In VB.NET there is the WITH command that lets you omit an object name and only access the methods and properties needed. For example:
With foo
.bar()
.reset(true)
myVar …
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 …
2
votes
9answers
155 views
Syntactic sugar vs. feature
In C# (and Java) a string is little more than a char array with a stored length and a few methods tacked on. Likewise, (reference vs. value stuff aside) objects are little more tha …
28
votes
21answers
1k views
Best javascript syntactic sugar
Here are some gems:
Literals:
var obj = {}; // Object literal, equivalent to var obj = new Object();
var arr = []; // Array literal, equivalent to var arr = new Array();
var rege …
4
votes
6answers
285 views
Python assert — improved introspection of failure?
This is a rather useless assertion error; it does not tell the values of the expression involved (assume constants used are actually variable names):
$ python -c "assert 6-(3*2)" …
11
votes
4answers
699 views
Haskell: difference between . (dot) and $ (dollar sign)
Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parenth …
4
votes
1answer
100 views
Code equivalent to += assignment to an event
I was wondering if anyone could tell me the raw code equivalent to the += operator for adding a method to an event. I am curious to how it it works from a technical standpoint.
2
votes
3answers
343 views
in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order?
The list sort method is a modifier function that returns None.
So if I want to iterate through all of the keys in a dictionary I cannot do:
for k in somedictionary.keys().sort() …
