Displaying 1 result from an estimated 1 matches for "vec_proxy_compar".
Did you mean:
vec_proxy_compare
2018 Nov 06
0
An update on the vctrs package
...<https://adv-r.hadley.nz/s3.html#s3-subclassing>.
- `==`, `!=`, `unique()`, `anyDuplicated()`, and `is.na()` are defined
in terms of `vec_proxy_equal()`. `<`, `<=`, `>=`, `>`, `min()`,
`max()`, `median()`, `quantile()`, and `xtfrm()` methods are defined
in terms of `vec_proxy_compare()`. More details + examples at
<https://vctrs.r-lib.org/articles/s3-vector.html#equality-and-comparison>
- `+`, `-`, `/`, `*`, `^`, `%%`, `%/%`, `!`, `&`, and `|` operators
are defined in terms of a double-dispatch use `vec_arith()`.
Mathematical functions including the Su...