3
votes
sorting a ruby array of objects by an attribute that could be nil
To be fair, I'm not very familiar with Ruby, so take this as more of an algorithm idea rather than a code one... and rewrite the ?: operator as whatever Ruby has that's cleaner.
Can't you j …
0
votes
What is the best way in Tcl v8.4 to have a proc return an array?
My preference, if you need to use arrays, is the [array get/set] combo you showed:
proc mine {} {
array set foo { red 1 blue 2 green 3 }
array get foo
}
tcl> array set foo [ …
0
votes
How does one instantiate an array of maps in Java?
Short answer appears to be that you really just can't.
See the following for a blog about it.
http:/ …
