vote up 4 vote down star

I'm writing a lot of code with lambdas these days.

return _schema.GetAll<Node>()
           .ToList()
           .FindAll(node => node.Type == NodeType.Unmanaged)
           .Cast<Shape>()
           .ToList();

Note: GetAll() returns an IList.

Can i get any terser?

flag

how can I edit the code so that it displays on two lines? – geejay Jul 31 at 12:44
Add a line break at an appropriate spot in the code, make sure the second line is appropriately spaced. – Chris Charabaruk Jul 31 at 12:45
Terser, or more terse? – jjnguy Jul 31 at 12:52
Terser is better, but more terse is just as good. – geejay Jul 31 at 13:27
Maximum tersiness! – jayrdub Aug 1 at 7:17
show 1 more comment

2 Answers

vote up 3 vote down check
  1. You could replace the ToList followed by a FindAll with a Where.
  2. A popular standard with lambda parameters in simple statements is a single character. 'node' could be renamed to just 'n'.
  3. Your method could return an IEnumerable instead of a IList. The method caller could then call ToList if required.

After:

return _schema.GetAll<Node>().Where(n => n.Type == NodeType.Unmanaged).Cast<Shape>();
link|flag
2  
Where did you find the "naming standard" for lambdas? Your suggestion can harm readability in many cases. – Mehrdad Afshari Jul 31 at 12:50
2  
All the code examples in the .NET Framework Design Guidelines book that contained lambdas only used a single character for lambda parameter names - blogs.msdn.com/mirceat/archive/… – James Newton-King Jul 31 at 12:54
1  
and you believe code examples in that book constitute "the naming standard?" While in some cases, a single letter does make sense, for more complex expressions, it can be a major source of confusion. Those are just examples (designed to be concise, not necessarily readable and maintainable). – Mehrdad Afshari Jul 31 at 13:00
2  
Is it official? No. However most lambda code examples that come out of Microsoft uses a single character as the parameter name - weblogs.asp.net/scottgu/archive/… - that book is just one example (although notable in that it is written by the people who decide the standards). – James Newton-King Jul 31 at 13:08
2  
Both of you win... the reality is that one letter names are a practiced standard if not a stated standard. Just because other people do it does not mean you have to, if you like to be more expressive in your lambdas than super :) – spoon16 Jul 31 at 13:24
show 3 more comments
vote up 2 vote down

This should work.

return _schema.GetAll<Node>()
    .Where(node => node.Type == NodeType.Unmanaged)
    .Cast<Shape>()
    .ToList()

If your method had a return type of IEnumerable<Shape> you wouldn't need to call ToList().

You could also write it like this (with IEnumerable<Shape> return type):

return from node in _schema.GetAll<Node>()
       where node.Type == NodeType.Unmanaged
       select node as Shape;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.