1
vote
6answers
190 views
Can someone explain this line of code please? (Logic & Assignment operators)
I've seen the following lines of code and I know what they do, but I don't know how the second line works (and hence how to apply it to another situation).
$user = User::model()-& …
2
votes
1answer
46 views
What exactly does this Standard ML code do?
I'm reading Chris Okasaki's purely functional data structures, and there's one example I am having trouble with. It is located here. In particular, I don't understand how the rot …
3
votes
1answer
219 views
How does this MATLAB code work? (probabilities and random sequences)
I saw this code in a comment for the article "Never-ending Shuffled Sequence". I understand the basic premise, but I don't know how it works. The biggest explanation I need is of t …
2
votes
6answers
254 views
Why is this bad code?
I was looking at a question on here about confessing your worst code ever written and I am not quite sure, because of my lack of knowledge on why this is bad code.
public string …
1
vote
3answers
89 views
How does this “Lexographic order generation algorithm” work?
from Wikipedia:
Lexicographical order generation
For every number k, with 0 ≤ k < n!,
the following algorithm generates the
corresponding lexicographical
permutation …
1
vote
4answers
178 views
Explain this LINQ code?
I asked a question in which one of the response contained the following LINQ code:
var selected = lstAvailableColors.Cast<ListItem>().Where(i => i.Selected).ToList();
sel …
1
vote
8answers
242 views
Can someone explain the following javascript code?
In addition to the explanation, what does the $ mean in javascript? Here is the code:
var ZebraTable = {
bgcolor: '',
classname: '',
stripe: function(el) {
if (! …
