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

1
vote
3answers
42 views

Scheme sequencing

I am new to Scheme and I am trying to familiarize myself with the language by reading Structure and Interpretation of Computer Programs. I am a bit confused about sequencing. First, I understand ...
1
vote
2answers
120 views

How to figure out if it's a cast or a constructor call

Take this for example: const Integer operator+(const Integer& left, const Integer& right) { return Integer(left.i + right.i); } (taken from page 496 of Thinking in C++) What is the part ...
4
votes
1answer
43 views

Simple Syntax for Declaring properties with a starting value

Well so far, the shortest code I've seen to declare a property that can be set only from inside the class I've seen is: public T Property {get; private set;} But what if I want to declare it ...
1
vote
3answers
65 views

Javascript SemiColons ; [closed]

Why does forgetting semicolons not effect JavaScript sometimes, and other times it does? I know that copying and pasting code is bad habit, but sometimes it is necessary, at least for trying the code ...
4
votes
3answers
106 views

Use case for `&&=`

I have seen and used by myself lots of ||= in Ruby code, but I have almost never seen or used &&= in practical application. Is there a use case for &&=?
-3
votes
1answer
47 views

Python: Adding method for number

Being tempted with Ruby I want to add some syntactic sugar in working with dates in python. How can I implement this method: (3).days.ago() or (4).days.from_now()?
1
vote
7answers
124 views

Difference between += for Integers/Strings and << For Arrays?

I'm confused about the different results I'm getting when performing simple addition/concatenation on integers, strings and arrays in Ruby. I was under the impression that when assigning variable b ...
0
votes
3answers
60 views

Is there a shortcut of += if not zero in {} in ruby

Is there any shortcut (syntaxtic sugar) function in ruby to do this? # x[5] += 3 that zeroes first if x[5] does not exists x = {} x.key? 5 ? x[5] = 3 : x[5] += 3
0
votes
1answer
26 views

.NET Framework supported empty action syntax or singleton

When working with existing frameworks, sometimes you need to pass in an action delegate which performs no action usually an extension point added by the original developer. Example: var anObject = ...
16
votes
1answer
379 views

Defining new infix operators

Relevant ideone link: http://ideone.com/9i7d0k So thanks to C++11, it's now possible to combine macros, user-defined literals, lambdas, etc. to create the closest I can get to 'syntactic sugar'. An ...
0
votes
1answer
45 views

Shortcuts for expressing the non-boolean meaning of “or”? Like `x == (1 or_in_the_convetional_English_sense 2)` as opposed to `x == 1 or x == 2`

Other ways of putting it (like [1, 2].include? x in Ruby and x in [1, 2] in Python) are pretty obvious, clear, and short anyway. So the reasons why or why not to have a way of mimicking the ...
1
vote
2answers
41 views

What is a way to make JQuery plugin extendible?

I try to move some common application specific actions to jQuery plug-in by: $.fn.extpoint = function() {...} But I don't want to declare several extension points: $.fn.extpoint1 = function() ...
1
vote
3answers
158 views

Scala implicit conversion of any numeric type

I'm currently learning the Scala programming language (love it by the way) and have recently found out of implicit conversions. So i have my class Complex and its companion object. and in my companion ...
5
votes
1answer
122 views

java sugaring, can I avoid almost-duplicate code here?

private class HSV extends HorizontalScrollView { public LinearLayout L; public AbsoluteLayout A; public HSV(Context context) { super(context); L = new ...
3
votes
1answer
55 views

Can I fold with an infix operator without writing out an anonymous function?

If I wanted to add up a list I could do this: - List.foldr (fn (x, y) => x + y) 0 [1, 2, 3] val it = 6 : int Is there any way to write something more along the lines of: List.foldr + 0 [1, 2, ...
0
votes
1answer
85 views

.NET: Creating Dictionaries by using Anonymous Types - Code Smell or Good Trick [closed]

I'm curious to hear some opinions the use of anonymous types the way MVC 4 uses them to set route defaults. Note: I'm adding additional context to the end of question. Example: ...
3
votes
2answers
85 views

What does extended slice syntax actually do for negative steps? [duplicate]

The extended slice syntax in python has been explained to me as "a[n:m:k] returns every kth element from n to m". This gives me a good idea what to expect when k is positive. But I'm lost on how to ...
3
votes
3answers
437 views

AWK: shortened if-then-else with regex

The following AWK format: /REGEX/ {Action} Will execute Action if the current line matches REGEX. Is there a way to add an else clause, which will be executed if the current line does not matches ...
2
votes
2answers
47 views

Transparent array and object casting

When you get some database record using PHP extensions of 3rd party libraries you know that some of them return an array and some other return object, during web development I have to cast such object ...
3
votes
3answers
146 views

Evaluate many boolean expressions like Array#join in Ruby

In Ruby, you can use Array#join to simple join together multiple strings with an optional delimiter. [ "a", "b", "c" ].join #=> "abc" [ "a", "b", "c" ].join("-") #=> "a-b-c" I'm ...
0
votes
1answer
41 views

customize the prospects exports of a prospectlist in SugarCrm

I using SugarCRM and when i exports prospects I can get all the fields, including the custom filed I added. but when i try to download the prospects from prospect list then only a few fields are ...
4
votes
2answers
48 views

Is there an interface that enables > < and all the other comparison operators?

I'm mucking about, making a generic class, and all this time I thought using types that implemented IComparable enabled using the comparison operators. I know .CompareTo() can perform functionally ...
4
votes
5answers
97 views

Treating Arrays of Instances Like Single Instances

In Java I'm looking for a generic template that means arrays of a given type (say Foo), will allow instance method calls upon the array. Behind-the-scenes this would translate to iterating over all ...
0
votes
1answer
35 views

How is for…of used in other languages which made it relevant for ECMAScript-6?

I noticed for...of loops were added to the ECMAScript-6 proposal and implemented in IE10 and Firefox, but have never heard of them until now. What's the typical use case for them?
2
votes
2answers
145 views

Do macros make naturally chained comparisons possible in Scala?

Scala does not provide chained comparisons as Python does: // Python: 0 < x <= 3 // Scala: 0 < x && x <= 3 Will Scala 2.10 with the new macro feature enable the programmer write ...
5
votes
4answers
555 views

Compiler Design : Is “variable not declared” a syntactic error or semantic error?

Is such type of an error produced during type checking or when input is being parsed? Under what type should the error be addressed?
7
votes
2answers
137 views

What is the magic that makes properties work with the CLR?

I noticed when I reflect into an assembly, calls to property accessors sometimes look like methods // "Reflected" example class Class1 { public bool Boolean { get; set;} } class Class2 { ...
0
votes
3answers
153 views

Is <boolean expression> && statement() the same as if(<boolean expression>) statement()?

Are the two identical? Suppose you have: var x = true; And then you have one of either: x && doSomething(); or if(x) doSomething(); Is there any differene whatsoever between the two ...
5
votes
2answers
71 views

Constants and sugar

I have a set of functions that I use very often, so I would like to collect them in a library. Before I start writing the library, I was thinking about where to store the constants that influence the ...
1
vote
2answers
74 views

Mapping a C# property onto a data member's property

Supposing I have the following structure: public class Inner { public double Foo { get; set; } } public class Outer { public double Bar { get; set; } private Inner MyInner; } I want ...
1
vote
3answers
216 views

Python decorators just syntactic sugar? [duplicate]

Possible Duplicate: Understanding Python decorators I am quite new on using Python decorators and from what I understand on my first impression that they are just syntactic sugar. Is there ...
1
vote
1answer
69 views

Scala factory ignored by compiler?

I spent all this time putting together a factory method in my companion object like so: class Stuff(val a: Int, val b: Long) { this() = this(0,0L) } object Stuff { def apply(a:Int, b:Int) = new ...
19
votes
3answers
443 views

Is it possible to use a bracketing syntactic sugar for an applicative functor?

I've seen (in McBride and Paterson's 'Applicative programming with effects' http://strictlypositive.org/IdiomLite.pdf) the use of the lovely syntactic sugar [| f x y z |] for f <$> x ...
2
votes
3answers
232 views

Is there a way to implement custom language features in C#?

I've been puzzling about this for a while and I've looked around a bit, unable to find any discussion about the subject. Lets assume I wanted to implement a trivial example, like a new looping ...
0
votes
3answers
80 views

Postgres implicit type inferencing from select statements

I asked a similar questions yesterday about postgress, and if it could inference the type from the result shape of a select statement. Today I want to return a resultset from a query, this is the ...
0
votes
1answer
64 views

Postgres implicitly shaped temporary tables. Syntactic sugar I am not aware of?

I'm writing a batch mode update function and at the moment it looks like this : CREATE OR REPLACE FUNCTION gen_category_counts() RETURNS VOID as $$ BEGIN CREATE TEMPORARY TABLE category_stats ON ...
2
votes
2answers
100 views

Embedding a domain specific language in an OCaml toplevel — to Camlp4 or not?

I have some code that includes a menhir-based parser for a domain specific language (a logic). For the sake of my sanity while debugging, it would be great to be able to type instances of this ...
1
vote
3answers
115 views

People keep telling me I'm writing “C style iterators” in ruby, and that I'm supposed to do it this other way, without the i++ thing

The details here aren't important, it's just an example, all that matters is the i=0, i+=1 action def sortAndIndex #sorting keys @disco = Hash[@disco.sort] #basic setup for both input types ...
3
votes
5answers
114 views

C# syntactic sugar similar to SQL's IN comparison?

I often find myself writing conditionals similar to the following: if(Path.GetExtension(filename) == ".pdf" || Path.GetExtension(filename)== ".doc") { // do something } Calling ...
-4
votes
4answers
139 views

Is there an alternative to post-increment/post-decremet (++/--) operator in Ruby?

Is there an alternative to increment/decremet (++/--) operator in Ruby? I'm looking fore some syntactic sugar.
0
votes
2answers
147 views

Dynamically create Hash and Arrays

I am looking for the Ruby-est way to solve a problem. I have code of a form similar to this in my application: data = [1,2,3,4] a = [] b = [] h = {} data.each do |val| h[val] = func1(val) a.push ...
0
votes
2answers
122 views

Ruby syntactic sugar for chains of (!obj.nil?) [duplicate]

Possible Duplicate: Is there a clean way to avoid calling a method on nil in a nested params hash? Is there an equivalent null prevention on chained attributes of groovy in ruby? Is there ...
3
votes
1answer
254 views

Efficient subsetting in Rcpp (equivalent of the R “which” command)

In Rcpp, there are various "Rcpp sugar" commands that permit nice vectorised operations in the code. In the code below I move across a data frame, break it into vectors, then use the "ifelse" and ...
0
votes
2answers
46 views

Suppressing Method Return in Object Oriented Language

I'm going to preface this by saying that this is by no means a major issue, more of something I haven't really heard talked about in terms of programming language design, and I was wondering if anyone ...
0
votes
2answers
93 views

Alias instead of new variable for sugar syntax

Consider char firstLetter=word[0];, where you do not do anything with firstLetter besides use it as sugar for readability. Is there something other than #define that can just make an inline "alias" ...
1
vote
2answers
46 views

Javascript attach an object syntactic sugar?

I have an object in my class like so: this.options = { a: 1, b: 2, ... }; I just wondered if there was a way to "attach" the options object to the current scope in Javascript, such ...
1
vote
1answer
136 views

Scheme - detecting aux keyword

I have just finished up the compilers course at IU and am trying to add a few more forms to my little "scheme". We added several forms into our language via syntactic sugar where a full scheme would ...
3
votes
2answers
141 views

Is there any programe to add brackets of Clojure?

I'm just a student, rather than a progammer. When I'm learning Clojure of some languages, the readability and convenience of syntax is the most important issue(Maybe this's wrong..). So, Clojure is ...
3
votes
2answers
454 views

Getting the desugared part of a Scala for/comprehension expression?

Does anyone know how to get the (Scala part only) desugared translation of a for/comprehension expression before it actually tries to compile in the REPL (or compiler)? The only thing I've found so ...
0
votes
3answers
84 views

how to add syntactic sugar to rails similar to collections

How one can add syntactic sugar similar to rails "add to collection" << operator, i.e. @object.collection << item I was trying to do class Object def collection<<(item) ...

1 2 3 4