Learn R Programming

debug (version 1.2.4)

debug.C: For debugging C-calls with many arguments.

Description

Sometimes you call .C with huge numbers of arguments (e.g. when initializing data structures), and you get an error message complaining about one of the arguments. Trouble is, the error message doesn't tell you which one, and it can be hard to track down. A convenient way to find out is to mtrace the caller and run as far as the .C call, then do this at the prompt: D(n)> .C <- debug.C and then hit . All named arguments will be evaluated and printed. So you do need to make sure your "important" .C arguments all have names-- which is good practice anyway, for matching up the R{} and C code.

Usage

# This is mandatory, but not useful here. See *Description*
# You would never call 'debug.C' directly
debug.C(...)

Arguments

...
a la .C

Value