Skip to content
Prev 7287 / 12125 Next

[R-pkg-devel] Workaround for code/documentation mismatch

I understand that you did *not* ask .. but really
why don't you want to use R's own
builtin, fast, well documented, present everywhere *and* simpler syntax

while(cond) {
  expr1
  expr2
  ...
}	

???

and also

   repeat {
     expr1
     expr2
     ....
     if(cond) break
   }

instead of your   %until%  below?