slider_plus()
and slider_minus()
are developer functions used to register
special double dispatch methods to control how .before
and .after
are
subtracted from and added to .i
. These allow developers to overcome some of
the restrictions around +
and -
when custom S3 types are involved. These
should only be used by package authors creating new index types.
slider_plus()
allows you to override the default behavior of.i + .after
. When writing the S3 method,x
will be.i
, andy
will be.after
.slider_minus()
allows you to override the default behavior of.i - .before
. When writing the S3 method,x
will be.i
, andy
will be.before
.
These generics are a bit special. They work similarly to
vctrs::vec_ptype2()
in that they are double dispatch methods that
dispatch off the types of both x
and y
. To write an S3 method for these
generics, write and export an S3 method of the form:
Inheritance is not considered in the method lookup, and you cannot use
NextMethod()
from within your method.