[R-pkg-devel] advice on reminders/nags to CRAN maintainers

2021-08-11 Thread Ben Bolker
Wondering about etiquette/if I should start over again with a package submission. tl;dr, the package has been 'waiting' since 30 July (I responded the same day to the queries that were sent). For what it's worth, the 'pretest-waiting-recheck' message below was sent from *a* CRAN

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

2021-08-11 Thread Andrew Simmons
Hello, @Martin Maechler: %until% and %while% use R's builtin repeat function. Something like do(expr) %until% (cond) repeat { expr if (cond) break } are identical. After %until% and %while% check the arguments look correct, it makes a call to repeat like above and evaluates it

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

2021-08-11 Thread Duncan Murdoch
On 10/08/2021 11:25 p.m., Andrew Simmons wrote: Hello, I've written two functions to emulate do while/until loops seen in other languages, but I'm having trouble documenting its usage. The function is typically used like: do ({ expr1 expr2 ... }) %while% (cond) so I want to

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

2021-08-11 Thread Martin Maechler
> Hello, > > I've written two functions to emulate do while/until loops seen in other > languages, but I'm having trouble documenting its usage. The function is > typically used like: > > do ({ > expr1 > expr2 > ... > }) %while% (cond) I understand that you did *not* ask .. but