The expression tag has no wiki summary.
140
votes
14answers
12k views
Expression Versus Statement
I'm asking with regards to c#, but I assume its the same in most other languages.
Does anyone have a good definition of expressions and statements and what the differences are.
Thanks in advance.
137
votes
5answers
5k views
What are rvalues, lvalues, xvalues, glvalues, and prvalues?
In C++03, an expression is either an rvalue or an lvalue.
In C++0x, an expression can be an:
rvalue
lvalue
xvalue
glvalue
prvalue
Two categories have become five categories.
What are these ...
39
votes
4answers
2k views
Compiled C# Lambda Expressions Performance
Consider the following simple manipulation over a collection:
static List<int> x = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
var result = x.Where(i => i % 2 == 0).Where(i ...
38
votes
6answers
32k views
xpath find if node exists
Using a xpath query how do you find if a node (tag) exists at all?
For example if I needed to make sure a website page has the correct basic structure like /html/body and /html/head/title
15
votes
6answers
6k views
converting a .net Func<T> to a .net Expression<Func<T>>
Going from a lambda to an Expression is easy using a method call...
public void GimmeExpression(Expression<Func<T>> expression)
{
((MemberExpression)expression.Body).Member.Name; // ...
14
votes
6answers
583 views
Why is Func<> created from Expression<Func<>> slower than Func<> declared directly?
Why is a Func<> created from an Expression<Func<>> via .Compile() considerably slower than just using a Func<> declared directly ?
I just changed from using a ...
14
votes
3answers
4k views
How to convert an Expression<Func<T, bool>> to a Predicate<T>
I have a method that accepts an Expression<Func<T, bool>> as a parameter. I would like to use it as a predicate in the List.Find() method, but I can't seem to convert it to a Predicate ...
13
votes
2answers
756 views
In C#, Is Expression API better than Reflection
Nowadays, I'm exploring C# Expression APIs. So I could use some help understanding how it works, including the difference between Expression and Reflection. I also want to understand if Expressions ...
12
votes
1answer
228 views
How is a Func<T> implicitly converted to Expression<Func<T>>?
I don't understand what is happening here:
Both of these lines compile:
Func<object> func = () => new object();
Expression<Func<object>> expression = ()=>new object();
...
12
votes
2answers
10k views
C#: An item with the same key has already been added, when compiling expression
Ok, here's a tricky one. Hopefully there is an expression guru here who can spot what I am doing wrong here, cause I am just not getting it.
I am building up expressions that I use to filter queries. ...
11
votes
3answers
476 views
EntityFramework query manipulation, db provider wrapping, db expression trees
I'm trying to implement data localization logic for Entity Framework. So that if for example a query selects Title property, behind the scenes it should reference the column Title_enGB or Title_deCH ...
11
votes
1answer
3k views
Where is the expression window in Xcode 4?
How can I add an expression to watch in Xcode 4?
This should be very obvious, but it is not. It does not seem to be down any menu or available on a contextual click. It would be nice if I could ...
11
votes
5answers
915 views
Python: what is the difference between an Expression and a Statement?
In Python: what is the difference between Expressions and Statements?
Thanks.
11
votes
3answers
546 views
Haskell: Equation Expander 1+(1+(1+(1+(…))))=∞
Does there exist a equation expander for Haskell?
Something like foldr.com: 1+(1+(1+(1+(…))))=∞
I am new to Haskell I am having trouble understanding why certain equations are more preferable than ...
10
votes
1answer
1k views
What is the purpose of LINQ's Expression.Quote method?
The MSDN documentation states:
Expression.Quote
Method Creates a
UnaryExpression that represents an
expression that has a constant value
of type Expression.
I've been able to build ...
10
votes
4answers
658 views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global scope yields an error ...
9
votes
4answers
138 views
lambda Expression as a property
I have a working setup which is not strongly typed and relies on reflection.
I have a class, say
class Person{
public string FirstName {get ; set;}
public string LastName {get; set;}
...
9
votes
7answers
269 views
Wrapper to FOR loops with progress bar
I like to use a progress bar while running slow for loops. This could be done easily with several helpers, but I do like the tkProgressBar from tcltk package.
A small example:
pb <- ...
9
votes
3answers
1k views
How to check if two Expression<Func<T, bool>> are the same
Is it possible to find out if two expressions are the same?
Like given the following four expressions:
Expression<Func<int, bool>> a = x => false;
...
9
votes
14answers
1k views
Is knowing blend required?
Do you expect your WPF developers to know expression blend?
Any good resources for learning more about Blend?
[UPDATE] Does knowing blend make you more productive?
8
votes
2answers
129 views
dispatching S4 methods with an expression as argument
I'm trying to convince an S4 method to use an expression as an argument, but I always get an error returned. A trivial example that illustrates a bit what I'm trying to do here :
...
8
votes
5answers
486 views
SQL JOIN: is there a difference between USING, ON or WHERE?
I was wondering if there is any difference in the way SQL performs on these join statements:
SELECT * FROM a,b WHERE a.ID = b.ID
SELECT * FROM a JOIN b ON a.ID = b.ID
SELECT * FROM a JOIN b ...
8
votes
6answers
264 views
Why are lambda expressions not “interned”?
Strings are reference types, but they are immutable. This allows for them to be interned by the compiler; everywhere the same string literal appears, the same object may be referenced.
Delegates are ...
8
votes
5answers
2k views
MVVM Light + Blend designer view error: Cannot find resource named 'Locator'
The application runs fine but i could not see my design in the designer view.
It says Cannot find resource named 'Locator'. Obviously, i did not change anything in the code, i just did the data ...
8
votes
4answers
1k views
Using Lambda Expressions trees with IEnumerable
I've been trying to learn more about using Lamba expression trees and so I created a simple example. Here is the code, this works in LINQPad if pasted in as a C# program.
void Main()
{
...
8
votes
3answers
320 views
C# .NET 3.5: What is Expression<> used for?
What exactly is Expression<> used for in C#? Are there any scenarios where you would instantiate Expression<>'s yourself as an object? If so, please give an example!
Thank you!
8
votes
2answers
3k views
How C# Compiler choose SelectMany when translating LINQ expression?
There are 4 overloaded signatures for Enumerable.SelectMany. To make it simple, we ignore the two signatures with int argument. So we have 2 signatures for SelectMany:
public static ...
7
votes
1answer
191 views
Trying to build a regular expression to check pattern - 2
I was wondering if more checks could be added: [Previously answered question](
Trying to build a regular expression to check pattern).
The above problem is brilliantly solved using this regex by ...
7
votes
2answers
134 views
How do I build this c# “Expression” at runtime using reflection?
To this day, I have not found a great article about expressions - and how to look at a C# lambda statement and say "oh, that's a blah blah"... so, if you know of a good article, I'd appreciate that as ...
7
votes
9answers
188 views
Is it possible to use a string for a LINQ query expression?
I need to extract some records if some variables have some values.
For example, if status>0 I need to filter result like :
where object.id=status
else, if status=0, I need to remove this where ...
7
votes
2answers
136 views
Can I define a method to accept EITHER a Func<T> OR an Expression<Func<T>>?
If I attempt to write two overloads of a method, one accepting an Expression<Func<T>> parameter and another accepting a Func<T>, I will get a compiler error on trying to call the ...
7
votes
3answers
3k views
Simple expression parser example using Boost::Spirit?
Is anyone aware of an online resource where I can find out how to write a simple expression parser using Boost::Spirit?.
I do not necessarily need to evaluate the expression, but I need to parse it ...
7
votes
8answers
3k views
Boolean and Math Expression Parser
I am writing an application that allows a user to enter a boolean expression. I need the ability to evaluate the entered boolean expression at runtime and am looking for both a parser and a ...
7
votes
6answers
7k views
United States Banking Institution Account Number Regular Expression?
I have been tasked to "verify" the length of a U.S. Banking Institution ACCOUNT NUMBER for a web app I'm developing. I cannot find anything through SOF, Google, Fed reserve etc that outlines an ...
7
votes
3answers
8k views
Boolean Expressions in SQL Select list
I want to create a SQL Select to do a unit test in MS SQL Server 2005. The basic idea is this:
select 'Test Name', foo = 'Result'
from bar
where baz = (some criteria)
The idea being that, if the ...
6
votes
2answers
294 views
JPQL: Receiving a Collection in a Constructor Expression
I'm using JPQL and want to receive some normal parameters and a collection in a Constructor Expression to directly create the DTO-objects. But if the Collection is empty, I always get a error because ...
6
votes
2answers
110 views
Trying to find an algorithm which takes 2 regular expressions and tells whether they are equivalent
I'm trying to find out what the algorithm would be by being given two languages L1 and L2 to determine if they are equivalent (L1 = L2).
It's surprisingly difficult to come up with one as I've found, ...
6
votes
3answers
373 views
Python operator precedence
Python docs say that * and / have the same precedence.
I know that expressions in python are evaluated from left to right.
Can i rely in that and assume that j*j/m is always equal to (j*j)/m
avoiding ...
6
votes
1answer
690 views
Using module include in OCaml
In OCaml 3.11, I want to "extend" an existing module using the include directive, like so:
module MyString = struct
include String
let trim s = ...
end
No problem. But now I want to expose ...
6
votes
4answers
254 views
How would I express a chained assignment in Scala?
How would I express the following java code in scala?
a = b = c;
By the way, I'm re-assigning variables (not declaring).
6
votes
4answers
204 views
Confirming Greenspun's 10th Law in C#
I am trying to implement an infrastructure in C# that would allow me to make arbitrary mathematical expressions. For example, I want to be able to take an expression like
asin(sqrt(z - sin(x+y)^2))
...
6
votes
5answers
2k views
Best and shortest way to evaluate mathematical expressions
I know there are many algorithms to evaluate expressions, for example
By Recursive Descent
Shunting-yard algorithm
Reverse Polish notation
But is there any way to evaluate any mathematical ...
6
votes
3answers
2k views
Overriding grails.views.default.codec='html' config back to 'none'
If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()}.
If I set ...
6
votes
2answers
2k views
How do I compile an Expression Tree into a callable method, C#?
I have an expression tree I have created by parsing an Xml using the expression class in C#. See this question.
I only have Add, Subtract, Divide, Multiply, Parameters, And and Or in my Expression ...
5
votes
2answers
114 views
C: finding the maximum and minimum of the type of an arithmetic expression
I need to find the maximum and minimum of an arbitrary C expression which has no side effects. The following macros work on my machine. Will they work on all platforms? If not, can they be modified to ...
5
votes
1answer
95 views
create dynamic lamda from two other lambda (chaining the expressions)
Given the following, a lambda that takes an Identification object, and returns a property.
Expression<Func<Identification, object>> fx = _ => _.Id;
Given a conversion lambda that ...
5
votes
5answers
174 views
Is comma operator free from side effect?
For example for such statement:
c += 2, c -= 1
Is it true that c += 2 will be always evaluated first, and c in second expression c-= 1 will always be updated value from expression c += 2?
5
votes
4answers
117 views
Evaluation Order of Subscript Operator
Does there exist any order for evaluation of expressions in case of an array.
If an expression E is of the form E1[E2], where E1 & E2 are also expressions, is the order of evaluation of E1 & ...
5
votes
8answers
531 views
how is x&&y||z evaluated?
Given
int x=1,y=2,z;
Could you explain why the result for:
x && y || z
is 1?
x && y = 1
x && y || z = 1
5
votes
2answers
105 views
Expressions vs Lambdas
I know what a Lambda Expression is.
But I am not sure if that is the same thing as an Expression. There seems to be more to know here than I know.
I am looking at wrapping IQueryable and that uses ...