When pipelines are created without an initial term, the
magrittr package (where the pipes originate)
creates a specialised type of function called a fseq.
However, magrittr doesn't do much with these
fseq objects.
# S3 method for fseq +(lhs, rhs) # S3 method for fseq length(x) is.fseq(object) is_fseq(object)
| lhs |
|
|---|---|
| rhs |
|
| x | an |
| object | object to be tested. |
#> [1] 4(b + a)(2)#> [1] 2.666667length(a)#> [1] 2is.fseq(a)#> [1] TRUEis.fseq(mean)#> [1] FALSEis_fseq(a)#> [1] TRUEis_fseq(mean)#> [1] FALSE