Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
4answers
2k views

What is the formal difference in Scala between braces and parentheses, and when should they be used?

Can someone outline the formal difference between passing arguments to functions in parentheses () and in braces {}? The feeling I got from the Programming in Scala book is that Scala's pretty ...
15
votes
4answers
665 views

Why is it customary to put many closing parentheses on one line in Lisp-based languages?

Usually code looks like this: (one-thing (another-thing arg1 (f arg5 r)) (another-thing arg1 (f arg5 r))) Why doesn't it like this?: (one-thing (another-thing arg1 (f arg5 r)) ...
8
votes
2answers
397 views

Confused about Scala method calling conventions, specifically the sum function on Seq

I was playing around with the new Scala IDE (Eclipse 3.6.2 + Scala IDE 2.0.0 [Scala 2.9.0]) and I tried to do something simple like this: (1 to 10).sum That works fine, but I've been doing a lot of ...
6
votes
4answers
178 views

short circuiting and parenthesis

Does it matter how I group subexpressions when dealing with a single short-circuiting operator? a && b && c && d a && (b && (c && d)) (a && b) ...
6
votes
2answers
132 views

How can I tell if a set of parens in Perl code will act as grouping parens or form a list?

In perl, parentheses are used for overriding precedence (as in most programming languages) as well as for creating lists. How can I tell if a particular pair of parens will be treated as a grouping ...
6
votes
5answers
796 views

How to remove nested parentheses in LISP

How can I remove nested parentheses recursively in Common LISP Such as (unnest '(a b c (d e) ((f) g))) => (a b c d e f g) (unnest '(a b)) => (a b) (unnest '(() ((((a)))) ...
5
votes
2answers
112 views

Can parentheses in C cause implicit cast?

Background The last time I asked about whether parentheses were causing implicit cast (here), @pmg was nice enough to point out that "Nothing in C is done below int" But there, the discussion was ...
5
votes
2answers
93 views

Can parentheses in C change the result type of operands of a bitwise operation?

I have fed the following code through a static analysis tool: u1 = (u1 ^ u2); // OK u1 = (u1 ^ u2) & u3; // NOT OK u1 = (u1 ^ u2) & 10; // NOT OK u1 = (u1 ^ u2) & 10U; // NOT OK u1 = ...
5
votes
5answers
106 views

Is it possible to prevent death by parentheses?

Occasionally, I will write some code with way more parentheses than I like. if(!(new Day((((new Date()) / millisecondsPerDay) % 75)) instanceof oldDay))) { // Bonus points if that condition ...
5
votes
2answers
125 views

Ruby syntax question: Rational(a, b) and Rational.new!(a, b)

Today I came across the strange ruby syntax in the Rational class: Rational(a,b) (Notice the absence of the .new()portion compared to the normal Ruby syntax). What does this mean, precisely, ...
5
votes
3answers
747 views

Changing Paredit Formatting

When using paredit in programming modes such as C, typing ( will insert a space before the paren when I'm trying to call a function, leaving me with: foo () Is there a way to disable the insertion ...
5
votes
2answers
1k views

Keeping parentheses balanced (Paredit for Vim?)

Emacs has Paredit which actively prevents you from typing unbalanced parentheses (short of C-Q ( to force-insert a literal one, or other craziness). Inserting an open paren also inserts a closing ...
5
votes
1answer
815 views

Ruby block and unparenthesized arguments

I extracted simple example: require 'pp' x = 1..3 pp x.map do |i| {:value => i, :double => (i*2)} end pp x.map { |i| {:value => i, :double => (i*2)} } pp(x.map do |i| {:value => i, ...
4
votes
1answer
46 views

Inferring opening/closing parens?

It seems like someone must have done work on figuring out how to infer or suggest where to put closing parentheses. I mean, highlighting matching parens is great, but suggesting would be even better. ...
4
votes
5answers
82 views

Why would the addition of parentheses in SQL query cause the results to change?

When I execute the following query, even though there are 11 records that match, none are returned as written. However, if I remove the parentheses on lines 6 and 9, all 11 records are returned as ...
4
votes
1answer
90 views

Anonymous code blocks in c

What does a statement such as this mean ? int x = ( { int a; scanf( "%d", &a ); a ; } ) ; It compiles and runs equivalent to : int x; scanf( "%d", &x ); It seems to be like some kind ...
4
votes
5answers
615 views

How to write Haskell function to verify parentheses matching?

I need to write a function par :: String -> Bool to verify if a given string with parentheses is matching using stack module. Ex: par "(((()[()])))" = True par "((]())" = False Here's my stack ...
4
votes
2answers
1k views

Convert TSQL to MS-Access SQL

TSQL (as used in MS SQL Server 2000 and 2005) allows multiple JOIN clauses, one right after the other, no commas or parentheses needed. Try this in Access and it throws a fit: "Syntax error (missing ...
3
votes
1answer
111 views

Parenthesizing a string so that expression takes a given value

The following problem is from the chapter on Dynamic Programming by Vazirani et. al. [6.6]Let us define a multiplication operation(×) on three symbols a; b; c according to the following table: ...
3
votes
4answers
119 views

Enclosing in parentheses

Is there any way of enclosing some text in parentheses, or maybe curly brackets in vim? In other words, how would you do this? Initial string: It is sunny outside. Final string: It is (sunny) ...
3
votes
2answers
351 views

What are the parentheses used for in a bash shell script function?

I'v always wondered what they're used for? Seems silly to put them in every time if you can never put anything inside them. function_name () { #statements } Also is there anything to gain/lose ...
3
votes
5answers
392 views

What is the intention of putting return values in parentheses in C/Objective-C?

I've come across some code that surrounds the return value from a method/function in parentheses. What does that do? The code I saw took an image, resized it and then returned it. - (UIImage ...
3
votes
1answer
595 views

Braces: [Brackets], (Parentheses) & {Curlies} in Ruby & Rails

So the loose tolerance of Ruby to use braces sometimes and not REQUIRE them has led to alot of confusion for me as I'm trying to learn Rails and when/where to use each and why? Sometimes parameters ...
3
votes
2answers
67 views

Is there a library for .NET that does parenthesis or expression reduction and optimization?

Is there a library for .NET that does parenthesis or expression reduction and optimization? Something that would take an expression such as (A & (((B) | (C)) | D))) and return A & (B | C | D) ...
3
votes
8answers
572 views

What are some examples of where using parentheses in a program lowers readability?

I always thought that parentheses improved readability, but in my textbook there is a statement that the use of parentheses dramatically reduces the readability of a program. Does anyone have any ...
3
votes
2answers
707 views

Getting contents of square brackets, avoiding nested brackets

(first time poster, long time visitor via Google) I'm trying to extract the contents of some square brackets, however i'm having a spot of bother. I've got it working for round brackets as seen ...
3
votes
2answers
220 views

Highlighting quoted/backquoted parens

In Emacs is there a way to syntax-highlight the parentheses of quoted and backquoted sexps differently than the parens of other sexps so they stand out? e.g. I want these parens to be a different ...
3
votes
3answers
1k views

How to set curly braces'/parentheses'/square brackets'/arithmetic operators' syntax highlight color in VIM?

How do I highlight operators/parentheses/brackets/etc. in VIM? I'm not interested in coloring matching or unmatching parentheses/brackets. I've tried ":hi cBracket/whatnot guifg=something" and ":hi ...
3
votes
9answers
1k views

How do I parenthesize an expression programmatically?

I have an idea for a simple program to make that will help me with operator precedence in languages like C. The most difficult part of this is parenthesizing the expression. For example, I want this: ...
2
votes
5answers
56 views

Advanced Javascript: Why is this function wrapped in parentheses?

I came across this bit of Javascript code but have no idea what to make out of it. Why do I get "1" when I run this code? What is this strange little appendix of (1) and why is the function wrapped in ...
2
votes
2answers
49 views

Pascal : What's the difference between random(); and random;

Whether I use random or random(), I 'seem' to get the same results. Now, coming from a Python background, using random() seems more natural and convenient to me, but I've seen random being used plenty ...
2
votes
2answers
82 views

Why were parentheses chosen for function calls in most languages? [closed]

Whilst dreaming up a new programming language (keyword: dreaming), I wondered why parentheses were chosen for function calls. For example, in most programming languages, a function call would look ...
2
votes
1answer
73 views

Which Perl module 'explains' an expression provided on the command line?

I forgot the module name that "explains" the expression provided on the command line. By "explain", I mean add omitted parentheses. As I remember, it is used like: perl -MSomeModule "$x/$y*$z" ...
2
votes
2answers
71 views

What is the dominant style for parenthesization of Ruby function calls?

Say I have func_a and func_b which both take one argument, and I want to pass the result of func_b to func_a. What is the most common way to parenthesize this? func_a func_b input func_a ...
2
votes
3answers
248 views

Parentheses pairing ({}[]()<>) problem. Python

I want to be able to pair up all parentheses in a string, if they aren't paired then then they get their index number and False. It seems like it is repeating some values over and over, i.e cl == ...
2
votes
5answers
164 views

Syntactical meaning of putting strings in parentheses

I like to confuse myself with syntactical things and not to concentrate on really doing stuff. :) I know what I can do with this thing but I still want to know what is really happening under the ...
2
votes
1answer
136 views

Is “parentheses after function call ” a correct/legal use of JavaScript? [closed]

Possible Duplicate: Javascript syntax I haven't seen till now, what does it do really? I was checking out a library called def.js which makes JavaScript objects inherit in a similar ...
2
votes
3answers
144 views

Parenthesis representation of BinTree to BinTree

Hey all, I'm writing a program that takes in a string representation of a binary tree and creating a tree out of it. The code makes complete sense to me but it still wont do what it should. Thanks ...
2
votes
2answers
96 views

Why are my hyperlink addresses showing up next to the link its self?

For example... I have a link to the home page but when I view the page it looks something like this HOME (http://www.gotohomepage.com) Why is the link showing in parentheses next to the link ...
2
votes
3answers
2k views

C++ warning: suggest parentheses around arithmetic in operand of |

I have a code like A = B|C|D|E; Throwing the warning "suggest parentheses around arithmetic in operand of |" Expecting that expression needs high priority paranthesis for operators, tried the ...
2
votes
3answers
878 views

How do you make parentheses match height when they're split between lines in LaTeX math

Consider the following example \begin{equation} \begin{split} f = & \left( \frac{a}{b} + \right. \\ & \left. c \right) + d \end{split} \end{equation} In ...
2
votes
6answers
998 views

How to get rid of unnecessary parentheses in mathematical expression

Hi I was wondering if there is any known way to get rid of unnecessary parentheses in mathematical formula. The reason I am asking this question is that I have to minimize such formula length ...
1
vote
3answers
50 views

When square brackets are required in bash if statement?

Usually, I use square brackets in the if statement: if [ "$name" = 'Bob' ]; then ... But, when I check if grep succeeded I don't use the square brackets: if grep -q "$text" $file ; then ... When ...
1
vote
2answers
91 views

Format Negative numbers in parenthesis BUT NOT with $ symbol?

I have seen all over the internet to format a NEGATIVE double value with a parenthesis WITH a $ symbol ie. currency type. I am looking for a .NET format string, to format 12345.67 = 12,345.67 ...
1
vote
1answer
61 views

Class instantiation syntax

I've always been taught that 1. Class c(arg); and 2. Class c = arg; are two totally equivalent statements, but look at this situation. #include <iostream> class Intermediary { }; class ...
1
vote
5answers
66 views

A PHP variable with parentheses?

I don't understand this code: $outputFunction($dst, $resized, $quality); It's not a function e.g myfunction() It's not a variable e.g $variable = $variable2 What is it? The code works in the ...
1
vote
4answers
66 views

PHP for writing javascript - run out of parenthesis options

I have run out of parenthesis. I am using PHP to kick off some javascript and am using echo. The problem is that I cannot do this. echo = '$("#test").html("<input type="text"/>")'; as you can ...
1
vote
3answers
170 views

Scala's method overloading: reason behind a subtle functionality difference with varargs and no-args method defined with or without parenthesis?

Encountered a weirdness in Scala (2.8.1) in handling an overloaded method where the first is a no-args one and the second takes a variable number of arguments (0..N). Test code: class Test { def ...
1
vote
3answers
142 views

Scala functions with no arguments

In Scala there are two ways to define a function which takes no argument 1 def a=println("hello") 2 def a()=println("hello") These two functions are exactly same but (2) can be called with ...
1
vote
1answer
287 views

ASP “Cannot use parentheses when calling a Sub ” [closed]

Possible Duplicate: Cannot use parentheses when calling a Sub As far as I am aware this is correct but i get the error "Cannot use parentheses when calling a Sub" Never used ASP ...

1 2