Displaying 3 results from an estimated 3 matches for "nchildren".
Did you mean:
children
2006 Nov 07
2
Crash when embedding R X11 windows
Dear R developers,
I've been experimenting with embedding R X11 windows into another application
using KDE's QXEmbed on linux. Attempting to do so will crash R (with R 2.4.0,
trunk, and I know the bug has been around in prior versions). I used to think
this was related to bug #848, but I'm not sure, if / how the solution
suggested there still applies to current versions of R.
2007 Jun 23
3
Setting up a blank table with column names in the hard drive
Dear Friends.
Greetings!
This should be a very common operation and I believe there should be a nice
way in R to handle it. I couldn't find it in the manual or by searching on
line. I am wondering if I could ask for some help in this community.
I am trying to record the results of my program to a csv file in the hard
drive so as to save memory space and also to read the results in excel
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...lass function_param : public expr
+{
+ string_ref number;
+public:
+ function_param(string_ref number) : number(number) {}
+
+ void print_left(stream& s) const override
+ {
+ s += "fp";
+ s += number;
+ }
+};
+
+class expr_list : public expr
+{
+ size_t nchildren;
+ node** children;
+
+public:
+ expr_list(size_t nchildren, node** children)
+ : nchildren(nchildren), children(children) {}
+
+ void print_left(stream& s) const override
+ {
+ s += "(";
+ for (size_t i = 0; i < nchildren; ++i)
+ {
+...