Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the functionality of Grouping operator `()` in JavaScript differ from Haskell or other programming languages?

Grouping operator ( ) in JavaScript

The grouping operator ( ) controls the precedence of evaluation in expressions.


Does the functionality ( ) in JavaScript itself differ from Haskell or any other programming languages?

In other words,

Is the functionality ( ) in programming languages itself affected by evaluation strategies ?

Perhaps we can share the code below:

a() * (b() + c())

to discuss the topic here, but not limited to the example.

Please feel free to use your own examples to illustrate. Thanks.


like image 924
smiknof Avatar asked Sep 30 '21 00:09

smiknof


People also ask

How is Haskell different from other programming languages?

Unlike some other functional programming languages Haskell is pure. It doesn't allow any side-effects. This is probably the most important feature of Haskell. We've already briefly discussed the benefits of pure, side-effect free, programming - and there's not much more we can say about that.

What is grouping operator in Javascript?

The grouping operator consists of a pair of parentheses around an expression or sub-expression to override the normal operator precedence so that operators with lower precedence can be evaluated before an operator with higher precedence.

How is Haskell different?

Haskell is different in two ways: Values are immutable by default, and mutability must be explicitly indicated with a variable type. Mutating a mutable variable is considered a side effect, and that mutable is tracked by the type system.


Video Answer


3 Answers

Grouping parentheses mean the same thing in Haskell as they do in high school mathematics. They group a sub-expression into a single term. This is also what they mean in Javascript and most other programming language1, so you don't have to relearn this for Haskell coming from other common languages, if you have learnt it the right way.

Unfortunately, this grouping is often explained as meaning "the expression inside the parentheses must be evaluated before the outside". This comes from the order of steps you would follow to evaluate the expression in a strict language (like high school mathematics). However the grouping really isn't really about the order in which you evaluate things, even in that setting. Instead it is used to determine what the expression actually is at all, which you need to know before you can do anythign at all with the expression, let alone evaluate it. Grouping is generally resolved as part of parsing the language, totally separate from the order in which any runtime evaluation takes place.

Let's consider the OP's example, but I'm going to declare that function call syntax is f{} rather than f() just to avoid using the same symbol for two purposes. So in my newly-made-up syntax, the OP's example is:

a{} * (b{} + c{})

This means:

  • a is called on zero arguments
  • b is called on zero arguments
  • c is called on zero arguments
  • + is called on two arguments; the left argument is the result of b{}, and the right argument is the result of c{}
  • * is called on two arguments: the left argument is the result of a{}, and the right argument is the result of b{} + c{}

Note I have not numbered these. This is just an unordered list of sub-expressions that are present, not an order in which we must evaluate them.

If our example had not used grouping parentheses, it would be a{} * b{} + c{}, and our list of sub-expressions would instead be:

  • a is called on zero arguments
  • b is called on zero arguments
  • c is called on zero arguments
  • + is called on two arguments; the left argument is the result of a{} * b{}, and the right argument is the result of c{}
  • * is called on two arguments: the left argument is the result of a{}, and the right argument is the result of b{}

This is simply a different set of sub-expressions from the first (because the overall expression doesn't mean the same thing). That is all that grouping parentheses do; they allow you to specify which sub-expressions are being passed as arguments to other sub-expressions2.

Now, in a strict language "what is being passed to what" does matter quite a bit to evaluation order. It is impossible in a strict language to call anything on "the result of a{} + b{} without first having evaluated a{} + b{} (and we can't call + without evaluating a{} and b{}). But even though the grouping determines what is being passed to what, and that partially determines evaluation order3, grouping isn't really "about" evaluation order. Evaluation order can change as a result of changing the grouping in our expression, but changing the grouping makes it a different expression, so almost anything can change as a result of changing grouping!

Non-strict languages like Haskell make it especially clear that grouping is not about order of evaluation, because in non-strict languages you can pass something like "the result of a{} + b{}" as an argument before you actually evaluate that result. So in my lists of subexpressions above, any order at all could potentially be possible. The grouping doesn't determine it at all.

A language needs other rules beyond just the grouping of sub-expressions to pin down evaluation order (if it wants to specify the order), whether it's strict or lazy. So since you need other rules to determine it anyway, it is best (in my opinion) to think of evaluation order as a totally separate concept than grouping. Mixing them up seems like a shortcut when you're learning high school mathematics, but it's just a handicap in more general settings.


1 In languages with roughly C-like syntax, parentheses are also used for calling functions, as in func(arg1, arg2, arg3). The OP themselves has assumed this syntax in their a() * (b() + c()) example, where this is presumably calling a, b, and c as functions (passing each of them zero arguments).

This usage is totally unrelated to grouping parentheses, and Haskell does not use parentheses for calling functions. But there can be some confusion because the necessity of using parentheses to call functions in C-like syntax sometimes avoids the need for grouping parentheses e.g. in func(2 + 3) * 6 it is unambiguous that 2 + 3 is being passed to func and the result is being multiplied by 6; in Haskell syntax you would need some grouping parentheses because func 2 + 3 * 6 without parentheses is interpreted as the same thing as (func 2) + (3 * 6), which is not func (2 + 3) * 6.

C-like syntax is not alone in using parentheses for two totally unrelated purposes; Haskell overloads parentheses too, just for different things in addition to grouping. Haskell also uses them as part of the syntax for writing tuples (e.g. (1, True, 'c')), and the unit type/value () which you may or may not want to regard as just an "empty tuple".


2 Which is also what associativity and precedence rules for operators do. Without knowing that * is higher precedence than +, a * b + c is ambiguous; there would be no way to know what it means. With the precedence rules, we know that a * b + c means "add c to the result of multiplying a and b", but we now have no way to write down what we mean when we want "multiply a by the result of adding b and c" unless we also allow grouping parentheses.


3 Even in a strict language the grouping only partially determines evaluation order. If you look at my "lists of sub-expressions" above it's clear that in a strict language we need to have evaluated a{}, b{}, and c{} early on, but nothing determines whether we evaluate a{} first and then b{} and then c{}, or c{} first, and then a{} and then b{}, or any other permutation. We could even evaluate only the two of them in the innermost +/* application (in either order), and then the operator application before evaluating the third named function call, etc etc.

Even in a strict language, the need to evaluate arguments before the call they are passed to does not fully determine evaluation order from the grouping. Grouping just provides some constraints.


4 In general in a lazy language evaluation of a given call happens a bit at a time, as it is needed, so in fact in general all of the sub-evaluations in a given expression could be interleaved in a complicated fashion (not happening precisely one after the other) anyway.

like image 194
Ben Avatar answered Oct 19 '22 07:10

Ben


To clarify the dependency graph:

enter image description here

like image 3
KenSmooth Avatar answered Oct 19 '22 09:10

KenSmooth


Answer by myself (the Questioner), however, I am willing to be examined, and still waiting for your answer (not opinion based):

Grouping operator () in every language share the common functionality to compose Dependency graph.

In mathematics, computer science and digital electronics, a dependency graph is a directed graph representing dependencies of several objects towards each other. It is possible to derive an evaluation order or the absence of an evaluation order that respects the given dependencies from the dependency graph.

dependency graph 1 dependency graph 2

the functionality of Grouping operator () itself is not affected by evaluation strategies of any languages.

like image 2
smiknof Avatar answered Oct 19 '22 07:10

smiknof