Skip to content

Undocumented 'use.names' argument to c()

3 messages · Karl Millar, David Winsemius, Martin Maechler

#
'c' has an undocumented 'use.names' argument.  I'm not sure if this is
a documentation or implementation bug.
a
1
[1] 1

Karl
#
It came up on stackoverflow a couple of years ago:

http://stackoverflow.com/questions/24815572/why-does-function-c-accept-an-undocumented-argument/24815653#24815653

At the time it appeared to me to be a documentation lag.
David Winsemius
Alameda, CA, USA
#

        
>> On Sep 20, 2016, at 7:18 PM, Karl Millar via R-devel <r-devel at r-project.org> wrote:
>> 
    >> 'c' has an undocumented 'use.names' argument.  I'm not sure if this is
    >> a documentation or implementation bug.

    > It came up on stackoverflow a couple of years ago:

    > http://stackoverflow.com/questions/24815572/why-does-function-c-accept-an-undocumented-argument/24815653#24815653

    > At the time it appeared to me to be a documentation lag.

Thank you, Karl and David,
yes it is a documentation glitch ... and a bit more:  Experts know that
print()ing of primitive functions is, eehm, "special".

I've committed a change to R-devel ... (with the intent to port
to R-patched).

Martin

    >> 
    >>> c(a = 1)
    >> a
    >> 1
    >>> c(a = 1, use.names = F)
    >> [1] 1
    >> 
    >> Karl