I'd like to request a way to check if two variables reference same array or hashmap.
Suggested command name and operands:
<Anything> isSameRef <Anything> => <Bool>
I'd like to request a way to check if two variables reference same array or hashmap.
Suggested command name and operands:
<Anything> isSameRef <Anything> => <Bool>
Currently this can be partly done with isEqualTo which does seem to do the reference check and returns true, but it still does item by item comparison if they aren't same reference, which can be costly if you're comparing large objects and need to do it often.
An idea for a better name for the command: isEqualRef to be in line with existing isEqualTo