diff --git a/dev/articles/generator.html b/dev/articles/generator.html index bfb646e..bea3f4c 100644 --- a/dev/articles/generator.html +++ b/dev/articles/generator.html @@ -64,7 +64,7 @@
vignettes/generator.Rmd
generator.Rmd
abc
#> <generator/instance>
-#> function() {
-#> for (x in letters[1:3]) {
-#> yield(x)
-#> }
+#> function ()
+#> {
+#> for (x in letters[1:3]) {
+#> yield(x)
+#> }
#> }
+#> <environment: 0x1258e3818>
abc()
#> [1] "a"
@@ -252,11 +254,13 @@
print(generate_abc, internals = TRUE)
#> <generator>
-#> function() {
-#> for (x in letters[1:3]) {
-#> yield(x)
-#> }
+#> function ()
+#> {
+#> for (x in letters[1:3]) {
+#> yield(x)
+#> }
#> }
+#> <environment: 0x1258e3818>
#> State machine:
#> {
#> if (exhausted) {
@@ -317,6 +321,11 @@ Installation# install.packages("devtools")
devtools::install_github("r-lib/coro", build_vignettes = TRUE)
+Please note that the coro project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
+