Skip to content
Snippets Groups Projects
Select Git revision
  • 97134fa2d17851809c5d7cdba2a0f57a682292b3
  • master default protected
  • fix/typo
  • wip/project-management
  • lfs
5 results

resources.md

Blame
  • Forked from Scientific Computing / education / git-seminar
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    utils-pipe.R 363 B
    #' Pipe operator
    #'
    #' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
    #'
    #' @name %>%
    #' @rdname pipe
    #' @keywords internal
    #' @export
    #' @importFrom magrittr %>%
    #' @usage lhs \%>\% rhs
    #' @param lhs A value or the magrittr placeholder.
    #' @param rhs A function call using the magrittr semantics.
    #' @return The result of calling `rhs(lhs)`.
    NULL