Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

61
votes
5answers
5k views

null coalescing operator for javascript?

Is there a null coalescing operator in Javascript? For example, in C#, I can do this: String someString = null; var whatIWant = someString ?? "Cookies!"; The best approximation I can figure out ...
10
votes
5answers
347 views

What do you think about ??= operator in C#? [closed]

Do you think that C# will support something like ??= operator? Instead of this: if (list == null) list = new List<int>(); It might be possible to write: list ??= new List<int>(); ...
5
votes
3answers
274 views

C# coalesce operator doesn't replace a null method return value?

I have this code: MyClass _localMyClass = MyClassDAO.GetMyClassByID(123) ?? new MyClass(); This is the method: public static MyClass GetMyClassByID(int id) { var query = from m in ...
3
votes
2answers
234 views

IEnumerable<T> null coalescing Extension

I frequently face the problem to check whether an IEnumerable<T> is null before iterating over it through foreach or LINQ queries, then I often come into codes like this: var myProjection = ...
2
votes
1answer
55 views

Using null coalescing operator with a comparison

Given the method: public static bool IsDateValid(DateTime? date) { if (date.HasValue ? date.GetValueOrDefault() < MinDate : false) { return false; } return ...
2
votes
2answers
323 views

Postgresql COALESCE performance problem

I have this table in Postgresql: CREATE TABLE my_table ( id bigint NOT NULL, value bigint, CONSTRAINT my_table_pkey PRIMARY KEY (id) ); There are ~50000 rows in my_table. The question ...