Tagged Questions

Syntactic sugar is a computer science term that refers to syntax within a programming language that is designed to make things easier to read or to express.

learn more… | top users | synonyms

58
votes
28answers
3k 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 regex = /something/; // ...
57
votes
40answers
4k views

What is the best or most interesting use of Extension Methods you've seen? [closed]

I'm starting to really love extension methods... I was wondering if anyone her has stumbled upon one that really blew their mind, or just found clever. An example I wrote today: Edited due to other ...
33
votes
10answers
17k views

C# property and ref parameter, why no sugar?

I just ran across this error message while working in C# A property or indexer may not be passed as an out or ref parameter I known what caused this and did the quick solution of creating a ...
23
votes
5answers
967 views

Java in operator

For the one millionth time, I would have liked to use an IN operator in Java, similar to the IN operator in SQL. It could just be implemented as compiler syntactic sugar. So this if (value in (a, b, ...
21
votes
2answers
1k views

Haskell record syntax

Haskell's record syntax is considered by many to be a wart on an otherwise elegant language, on account of its ugly syntax and namespace pollution. On the other hand it's often more useful than the ...
21
votes
13answers
8k 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 ...
16
votes
2answers
409 views

Is it possible to roll your own syntax sugar (like do-notation, or arrow-notation) in Haskell?

Well, the question is self-explicative. Suppose I want to implement some special syntax just for fun. Is it possible? What tools should I use?
16
votes
4answers
885 views

What are all the instances of syntactic sugar in Scala?

I decided to create this question to have a single source for all things syntactic sugar in Scala. I feel these details are some of the things most frustrating to starting users and are hard to search ...
15
votes
9answers
1k views

Syntactic sugar in C/C++

I have been looking into Ruby and find its keywords "until" and "unless" very interesting. So I thought what was a good way to add similar keywords into C/C++. This is what I came up with: #define ...
12
votes
4answers
175 views

Syntax sugar for querying a Python list which element occurs first

I have a list of many elements. I care about two of its elements, a and b. I don't know the order of the list, nor do I want to sort it. Is there a nice one-liner that will return True if a occurs ...
12
votes
5answers
189 views

What kind of syntactic sugar is available in Perl to reduce code for l/rvalue operators vs. if statements?

There's a bunch out there, as Perl is a pretty sugary language, but the most used statements in any language is the combination of if statements and setting values. I think I've found many of them, ...
12
votes
13answers
984 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).someMember; If ...
10
votes
2answers
131 views

Output of True and []

I was wondering why True and [] returns [] instead of False Is the expression a syntactic sugar ?
10
votes
10answers
3k views

Magic First and Last Indicator in a Loop in Ruby/Rails?

Ruby/Rails does lots of cool stuff when it comes to sugar for basic things, and I think there's a very common scenario that I was wondering if anyone has done a helper or something similar for. a ...
9
votes
4answers
176 views

Is there a cleaner way to conditionally 'last' out of this Perl loop?

Not really knowing Perl, I have been enhancing a Perl script with help from a friendly search engine. I find that I need to break out of a loop while setting a flag if a condition comes true: ...
9
votes
7answers
492 views

Java Syntactic Sugar

I ran into this block of code today, and I don't know how it works. I know how to make anonymous classes, but I'm used to seeing a method signature and not just a pair of braces. Is the code between ...
8
votes
1answer
109 views

Using a block's return value in JavaScript

On a lot of browsers I've tested, JavaScript blocks actually return a value. You can test it out in any console: for(var i = 0; i < 10; i++) { var sqrt = Math.sqrt(i); if(Math.floor(sqrt) ...
8
votes
4answers
394 views

In c#, is foreach purely a “syntactic sugar”? Or is there anything deeper about it?

The compiler compiles a “foreach” loop into something like a for loop when the “foreach” is used with an array; And the compiler compiles a “foreach” loop into something like a while loop when the ...
8
votes
2answers
259 views

guard desugaring

I often hear the phrase, guards are just syntactic sugar for if-then-else (or case statements). Can somebody please desugar the following instance: halfOf :: Int -> Int halfOf x | even x = div x ...
8
votes
10answers
418 views

Does this feature exist? Defining my own curly brackets in C#

You'll appreciate the following two syntactic sugars: lock(obj) { //Code } same as: Monitor.Enter(obj) try { //Code } finally { Monitor.Exit(obj) } and using(var adapt = new adapter()){ //Code2 ...
7
votes
5answers
115 views

try-catch syntactic sugar in java

I'm wondering if there is a way in java (pure code, not some Eclipse thing) to "syntactic sugar" up repetitive try catch code. Namely, I have to wrap a bunch of functions public void foo(){ try{ ...
7
votes
3answers
390 views

Syntax sugar: _*

I just noticed this construct somewhere on web: val list = List(someCollection: _*) What does _* mean? Is this a syntax sugar for some method call? What constraints should my custom class satisfy ...
7
votes
2answers
138 views

Processing data by reference or by value in python

Consider the following session. How are the differences explained? I thought that a += b is a syntactical sugar of (and thus equivalent to) a = a + b. Obviously I'm wrong. >>> import numpy ...
7
votes
6answers
929 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)" [...] ...
6
votes
7answers
235 views

Why would you use “AS” when aliasing a SQL table?

I just came across a SQL statement that uses AS to alias tables, like this: SELECT all, my, stuff FROM someTableName AS a INNER JOIN someOtherTableName AS b ON a.id = b.id What I'm used to ...
6
votes
3answers
1k views

Java for each vs regular for — are they equivalent?

Are these two constructs equivalent? char[] arr = new char[5]; for (char x : arr) { // code goes here } Compared to: char[] arr = new char[5]; for (int i = 0; i < ...
6
votes
7answers
1k views

C# multiple arguments in one to DRY out parameter-passing

I don't know if this is possible, but in some of my unit tests, I end up initializing different objects with the same arguments. I would like to be able to store those arguments in some variable and ...
6
votes
5answers
350 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 doesn't work. In ...
6
votes
9answers
304 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 than glorified structs ...
6
votes
2answers
6k views

Scala Map: mysterious syntactic sugar?

I have just found out this syntax for a scala Map (used here in mutable form) val m = scala.collection.mutable.Map[String, Int]() m("Hello") = 5 println(m) //PRINTS Map(Hello -> 5) Now I'm not ...
6
votes
11answers
1k views

Why is Syntactic Sugar sometimes considered a bad thing?

Syntactic sugar, IMHO, generally makes programs much more readable and easier to understand than coding from a very minimalistic set of primitives. I don't really see a downside to good, well thought ...
6
votes
16answers
2k views

I want more syntactic sugar in my Java!

Syntactic sugar for properties for example in C#: private int x; public int X{ get { return x; } set { x = value; } } or simply public int X{ get; set; } I am missing verbatim strings ...
5
votes
1answer
75 views

python: cleanest way to wrap each method in parent class in a “with”

I have a parent class that has a bunch of class methods: class Parent(): @classmethod def methodA(cls): pass @classmethod def methodB(cls): pass In my subclass, I ...
5
votes
3answers
83 views

Enumerate enum-instances with loop

Scenario: I want to have an enum containing all the playing cards in a standard deck. For this example ignore the jokers. Writing enum Cards { SPADE_1(0, 1), SPADE_2(0, 2), etc. feels ...
5
votes
7answers
252 views

is there prettier syntax for a c++ iterator?

Is there a prettier / less-verbose way to use iterators in C++? From the tutorials I've seen, I either set up typedefs everywhere (which gets tedious to do for a lot of one-off for-loops): typedef ...
5
votes
10answers
592 views

C# syntax sugar - new way to set object attributes?

For the hardcore C# coders here, this might seem like a completely stupid question - however, I just came across a snippet of sample code in the AWS SDK forum and was completely sideswiped by it: ...
5
votes
4answers
312 views

How would one go about adding (minor) syntactic sugars to Java?

Suppose I want to add minor syntactic sugars to Java. Just little things like adding regex pattern literals, or perhaps base-2 literals, or multiline strings, etc. Nothing major grammatically (at ...
5
votes
5answers
3k 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 = .getName() End ...
5
votes
7answers
248 views

Is it worth the effort to have a function that returns the inverse of another function?

I have recently added a HasValue function to our internal javascript library: function HasValue(item) { return (item !== undefined && item !== null); } A during a convorsation with a ...
5
votes
9answers
859 views

C# - Syntactic sugar for out parameters?

Let us say for a moment that C# allowed multiple return values in the most pure sense, where we would expect to see something like: string sender = message.GetSender(); string receiver = ...
5
votes
5answers
757 views

How to mix binding (<-) and assignment (let) in one line? (in Haskell)

This is about syntactic sugar in Haskell. A simple Haskell program: main = do args <- getArgs let first = head args print first I use binding in the first line (args <- getArgs) and a ...
4
votes
4answers
252 views

Scala: alternative List syntax (with square brackets, if possible)

is there an alternative 'List' syntax in Scala? Is it possible to define one aditional class/type/operator* called '[' and ']'? I know 'square brackets' are used to indicate Type, but they are ...
4
votes
4answers
232 views

Is there a shorthand for querying a dictionary in python?

Here's the type of query I want to execute, written in pseudocode: select blob from blobs where blob['color'] == 'red' having maximum(blob['size']) Obviously, I could write that like this in ...
4
votes
2answers
106 views

Using void as syntactic sugar to guard against implicit globals, yes or no?

I've been thinking about javascript programming style, and I was wondering whether it makes sense to add a bit of syntactic sugar to guard against the easily-made mistake of using an implicit global, ...
4
votes
3answers
223 views

Lambda expression syntactic sugar?

I have just come across the following code (.NET 3.5), which doesn't look like it should compile to me, but it does, and works fine: bool b = selectedTables.Any(table1.IsChildOf)); Table.IsChildOf ...
4
votes
4answers
96 views

How can I check if a sequence of values is correctly ordered?

I have many Action objects with a property long Timestamp. I want to do something like this: Assert.IsTrue(a1.Timestamp < a2.Timestamp < a3.Timestamp < ... < an.Timestamp); ...
4
votes
4answers
205 views

In Scheme, can if be expressed as a combination of boolean operators?

It is easy to express and, or, and not in terms of if (with an assist from a local binding for or). I'd like to know if the reverse is true. My naïve first attempt: (if test conseq altern) => (or ...
4
votes
3answers
121 views

Is there a way to group CSS selectors for clarity?

If I have a dozen CSS selectors, and want to assign :hover properties to all of them, I'm used to doing this: selector, selector2, someOtherSelector, someSelector div { //some properties } ...
4
votes
2answers
120 views

Readonly field syntactic shortcut

As we know the code: using(myDisposable) { } is equivalent of try { //do something with myDisposable } finally { IDisposable disposable = myDisposable as IDisposable; if(disposable != ...
4
votes
7answers
425 views

function pointer without typedef

Is it posible to use the type of a prefiously declared function as a function pointer without using a typedef? function declaration: int myfunc(float); use the function declaration by some syntax ...

1 2 3