Displaying 1 result from an estimated 1 matches for "j_methods".
Did you mean:
p_methods
2006 May 22
0
Automatic Pluar to Singluar derivation in Loops
Hallo,
Enyoing the Rails framework, I often write loop like this:
for j_method in @service.j_methods
for parameter in j_method.parameters
@output = j_method.name+ " is in "+parameter.name
end
end
So:
* @service.j_methods => j_method
* j_method.parameters => parameter
forall @service.j_methods
forall j_method.parameters
@output = j_method.name+ " is in...