Top "Equivalent" questions

This tag is used for questions about similarities between any of various programming constructs.

XSLT equivalent for JSON

Is there an XSLT equivalent for JSON? Something to allow me to do transformations on JSON like XSLT does to …

json xslt equivalent language-comparisons
is there a Java equivalent to null coalescing operator (??) in C#?

Is it possible to do something similar to the following code in Java int y = x ?? -1; More about ??

java c# equivalent null-coalescing-operator
What is the equivalent of memset in C#?

I need to fill a byte[] with a single non-zero value. How can I do this in C# without looping …

c# memset equivalent
Java Equivalent to iif function

the question is simple, there is a functional equivalent of the famous iif in java? For example: IIf (vData = "S", …

java function if-statement equivalent iif-function
TypeError: list indices must be integers or slices, not list

array = some kind of list with 3 columns and unlimited amount of rows with data inside of it. Volume = array[0][2] counter = 0 …

list python-3.x indices equivalent
What is the equivalent of the Java BigDecimal class in C#?

BigDecimal is a class in the java.math package that has a lot of benefits for handling big numbers of …

c# java bigdecimal equivalent
DATEADD equivalent in PostgreSQL

Is there an equivalent to this T-SQL command in PostgreSQL? select dateadd(hh,duration_in_hours,start_date) as end_…

postgresql equivalent dateadd
Is there a python equivalent of Ruby's 'rvm'?

Q: Do we have anything functionally equivalent in Python to the Ruby version manager 'rvm'? (RVM lets you easily switch …

python egg equivalent rvm
What is the equivalent of setTimeOut() javascript to Android?

I need the equivalent code of setTimeOut(call function(),milliseconds); for android. setTimeOut(call function(),milliseconds);

java javascript android equivalent
Is there an equivalent in C++ of PHP's explode() function?

Possible Duplicate: Splitting a string in C++ In PHP, the explode() function will take a string and chop it up …

php c++ arrays explode equivalent