Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Sep 28, 2022
1 parent fd4fddb commit 9d8a880
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Authors@R:
Description: A complete and consistent functional programming
toolkit for R.
License: GPL-3 | file LICENSE
URL: http://purrr.tidyverse.org,
URL: https://purrr.tidyverse.org/,
https://github.com/tidyverse/purrr
BugReports: https://github.com/tidyverse/purrr/issues
Depends:
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ knitr::opts_chunk$set(
<!-- badges: start -->
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/purrr)](https://cran.r-project.org/package=purrr)
[![R build status](https://github.com/tidyverse/purrr/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverse/purrr)
[![Codecov test coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://codecov.io/gh/tidyverse/purrr?branch=master)
[![Codecov test coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/purrr?branch=master)
<!-- badges: end -->

## Overview

purrr enhances R's functional programming (FP) toolkit by providing a complete and consistent set of tools for working with functions and vectors. If you've never heard of FP before, the best place to start is the family of `map()` functions which allow you to replace many for loops with code that is both more succinct and easier to read. The best place to learn about the `map()` functions is the [iteration chapter](http://r4ds.had.co.nz/iteration.html) in R for data science.
purrr enhances R's functional programming (FP) toolkit by providing a complete and consistent set of tools for working with functions and vectors. If you've never heard of FP before, the best place to start is the family of `map()` functions which allow you to replace many for loops with code that is both more succinct and easier to read. The best place to learn about the `map()` functions is the [iteration chapter](https://r4ds.had.co.nz/iteration.html) in R for data science.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![R build
status](https://github.com/tidyverse/purrr/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverse/purrr)
[![Codecov test
coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://codecov.io/gh/tidyverse/purrr?branch=master)
coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/purrr?branch=master)
<!-- badges: end -->

## Overview
Expand All @@ -20,7 +20,7 @@ vectors. If you’ve never heard of FP before, the best place to start is
the family of `map()` functions which allow you to replace many for
loops with code that is both more succinct and easier to read. The best
place to learn about the `map()` functions is the [iteration
chapter](http://r4ds.had.co.nz/iteration.html) in R for data science.
chapter](https://r4ds.had.co.nz/iteration.html) in R for data science.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion man/purrr-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vignettes/other-langs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ purrr draws inspiration from many related tools:
[lodash](https://lodash.com) and
[lazy.js](http://danieltao.com/lazy.js/).

* [rlist](http://renkun.me/rlist/), another R package to support working
* [rlist](https://renkun-ken.github.io/rlist/), another R package to support working
with lists. Similar goals but somewhat different philosophy.

However, the goal of purrr is not to try and simulate a purer functional programming language in R; we don't want to implement a second-class version of Haskell in R. The goal is to give you similar expressiveness to an FP language, while allowing you to write code that looks and works like R:
Expand All @@ -42,5 +42,5 @@ However, the goal of purrr is not to try and simulate a purer functional program
argument, `.right`. Type-stable functions are easy to reason about so
additional arguments will never change the type of the output.

[scala]:http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.List
[scala]:https://www.scala-lang.org/api/current/index.html
[haskell]:http://hackage.haskell.org/package/base-4.7.0.1/docs/Prelude.html#g:11

0 comments on commit 9d8a880

Please sign in to comment.