https://github.com/aviralg/lazr
https://github.com/aviralg/lazr
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/aviralg/lazr
- Owner: aviralg
- License: other
- Created: 2021-03-04T18:38:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-04T01:13:27.000Z (almost 5 years ago)
- Last Synced: 2025-01-28T03:28:53.300Z (over 1 year ago)
- Language: C++
- Size: 275 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lazr
The goal of lazr is to analyze function strictness.
## Installation
You can install the released version of lazr from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("lazr")
```
## Example
This is a basic example which shows you how to solve a common problem:
``` r
library(lazr)
trace_strictness({
library(stringr)
str_c("a")
})
```