Displaying 17 results from an estimated 17 matches for "xxbinary".
Did you mean:
binary
2017 Mar 16
4
Support for user defined unary functions
...{ $$ = xxunary($1,$2);
setId( $$, @$); }
+ | SPECIAL expr { $$ = xxunary($1,$2);
setId( $$, @$); }
| '?' expr { $$ = xxunary($1,$2);
setId( $$, @$); }
| expr ':' expr { $$ =
xxbinary($2,$1,$3); setId( $$, @$); }
2009 Nov 25
1
Question R's parser : - parsing "x=\n 1"
...of the 3rd form.
Also, the expr_or_assign is of the 2nd form in
expr_or_assign : expr { $$ = $1; }
| equal_assign { $$ = $1; }
;
where equal_assign is
equal_assign : expr EQ_ASSIGN expr_or_assign { $$ =
xxbinary($2,$1,$3); }
When the parser sees 'x' and '=' it expects an expr_or_assign and we
know it will receive an expr. However, the expr cannot be a new
line(according to the defn of expr)
So instead of an expr, the parse gets a newline and should fail.
Q: So how does R parse this?
I thi...
2017 Mar 16
2
Support for user defined unary functions
...| SPECIAL expr { $$ = xxunary($1,$2);
>> setId( $$, @$); }
>> | '?' expr { $$ = xxunary($1,$2);
>> setId( $$, @$); }
>>
>> | expr ':' expr { $$ =
>> xxbinary($2,$1,$3); setId( $$, @$); }
>>
>> ______________________________________________
>> R-devel at r-project.org mailing list
>> https://stat.ethz.ch/mailman/listinfo/r-devel
>
>
>
>
> --
> Gabriel Becker, PhD
> Associate Scientist (Bioinformatics)
>...
2017 Mar 16
2
Support for user defined unary functions
...,$2);
> >>> setId( $$, @$); }
> >>> | '?' expr { $$ = xxunary($1,$2);
> >>> setId( $$, @$); }
> >>>
> >>> | expr ':' expr { $$ =
> >>> xxbinary($2,$1,$3); setId( $$, @$); }
> >>>
> >>> ______________________________________________
> >>> R-devel at r-project.org mailing list
> >>> https://stat.ethz.ch/mailman/listinfo/r-devel
> >>
> >>
> &...
2017 Mar 16
0
Support for user defined unary functions
...d( $$, @$); }
> + | SPECIAL expr { $$ = xxunary($1,$2);
> setId( $$, @$); }
> | '?' expr { $$ = xxunary($1,$2);
> setId( $$, @$); }
>
> | expr ':' expr { $$ =
> xxbinary($2,$1,$3); setId( $$, @$); }
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>
--
Gabriel Becker, PhD
Associate Scientist (Bioinformatics)
Genentech Research
[[alternative HTML versi...
2017 Mar 16
0
Support for user defined unary functions
...d( $$, @$); }
> + | SPECIAL expr { $$ = xxunary($1,$2);
> setId( $$, @$); }
> | '?' expr { $$ = xxunary($1,$2);
> setId( $$, @$); }
>
> | expr ':' expr { $$ =
> xxbinary($2,$1,$3); setId( $$, @$); }
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>
2017 Mar 16
2
Support for user defined unary functions
...> >> >>> | '?' expr { $$ = xxunary($1,$2);
> >> >>> setId( $$, @$); }
> >> >>>
> >> >>> | expr ':' expr { $$ =
> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
> >> >>>
> >> >>> ______________________________________________
> >> >>> R-devel at r-project.org mailing list
> >> >>> https://stat.ethz.ch/mailman/listinfo/r-devel
> >&...
2017 Mar 16
0
Support for user defined unary functions
...{ $$ = xxunary($1,$2);
>>> setId( $$, @$); }
>>> | '?' expr { $$ = xxunary($1,$2);
>>> setId( $$, @$); }
>>>
>>> | expr ':' expr { $$ =
>>> xxbinary($2,$1,$3); setId( $$, @$); }
>>>
>>> ______________________________________________
>>> R-devel at r-project.org mailing list
>>> https://stat.ethz.ch/mailman/listinfo/r-devel
>>
>>
>>
>>
>&...
2017 Mar 17
3
Support for user defined unary functions
...| '?' expr { $$ = xxunary($1,$2);
>>> >> >>> setId( $$, @$); }
>>> >> >>>
>>> >> >>> | expr ':' expr { $$ =
>>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>>> >> >>>
>>> >> >>> ______________________________________________
>>> >> >>> R-devel at r-project.org mailing list
>>> >> >>> https://stat.ethz.ch/mai...
2017 Mar 16
0
Support for user defined unary functions
...gt;> setId( $$, @$); }
>> >>> | '?' expr { $$ = xxunary($1,$2);
>> >>> setId( $$, @$); }
>> >>>
>> >>> | expr ':' expr { $$ =
>> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>> >>>
>> >>> ______________________________________________
>> >>> R-devel at r-project.org mailing list
>> >>> https://stat.ethz.ch/mailman/listinfo/r-devel
>> >>
>>...
2017 Mar 16
0
Support for user defined unary functions
...>>> | '?' expr { $$ = xxunary($1,$2);
>> >> >>> setId( $$, @$); }
>> >> >>>
>> >> >>> | expr ':' expr { $$ =
>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>> >> >>>
>> >> >>> ______________________________________________
>> >> >>> R-devel at r-project.org mailing list
>> >> >>> https://stat.ethz.ch/mailman/listinfo/r-...
2017 Mar 17
2
Support for user defined unary functions
...;>> >> xxunary($1,$2);
>> >>> >> >>> setId( $$, @$); }
>> >>> >> >>>
>> >>> >> >>> | expr ':' expr { $$ =
>> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>> >>> >> >>>
>> >>> >> >>> ______________________________________________
>> >>> >> >>> R-devel at r-project.org mailing list
>> >>> >> &...
2017 Mar 17
2
Support for user defined unary functions
...;>> >> xxunary($1,$2);
>> >>> >> >>> setId( $$, @$); }
>> >>> >> >>>
>> >>> >> >>> | expr ':' expr { $$ =
>> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>> >>> >> >>>
>> >>> >> >>> ______________________________________________
>> >>> >> >>> R-devel at r-project.org mailing list
>> >>> >> &...
2017 Mar 17
0
Support for user defined unary functions
...{ $$ =
> xxunary($1,$2);
> >>> >> >>> setId( $$, @$); }
> >>> >> >>>
> >>> >> >>> | expr ':' expr { $$ =
> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
> >>> >> >>>
> >>> >> >>> ______________________________________________
> >>> >> >>> R-devel at r-project.org mailing list
> >>> >> >>> http...
2017 Mar 17
2
Support for user defined unary functions
...gt;> >> >>> >> >>> setId( $$, @$); }
>> >> >>> >> >>>
>> >> >>> >> >>> | expr ':' expr { $$ =
>> >> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
>> >> >>> >> >>>
>> >> >>> >> >>> ______________________________________________
>> >> >>> >> >>> R-devel at r-project.org mailing list
>>...
2017 Mar 17
0
Support for user defined unary functions
...xunary($1,$2);
> >> >>> >> >>> setId( $$, @$); }
> >> >>> >> >>>
> >> >>> >> >>> | expr ':' expr { $$ =
> >> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
> >> >>> >> >>>
> >> >>> >> >>> ______________________________________________
> >> >>> >> >>> R-devel at r-project.org mailing list
> >> >>...
2017 Mar 17
0
Support for user defined unary functions
...; >>> >> >>> setId( $$, @$); }
> >> >> >>> >> >>>
> >> >> >>> >> >>> | expr ':' expr { $$ =
> >> >> >>> >> >>> xxbinary($2,$1,$3); setId( $$, @$); }
> >> >> >>> >> >>>
> >> >> >>> >> >>> ______________________________________________
> >> >> >>> >> >>> R-devel at r-project.org mailing...