Skip to content

Commit 4f6160e

Browse files
committed
Deploying to gh-pages from @ 94f02a3 🚀
1 parent 642acaf commit 4f6160e

24 files changed

Lines changed: 61 additions & 34 deletions

404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/performance.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

authors.html

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

authors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Source:
1010
[`DESCRIPTION`](https://github.com/dipterix/filearray/blob/main/DESCRIPTION)
1111

1212
Wang Z (2026). *filearray: File-Backed Array for Out-of-Memory
13-
Computation*. R package version 0.2.0.9001,
13+
Computation*. R package version 0.2.1,
1414
<https://dipterix.org/filearray/>.
1515

1616
@Manual{,
1717
title = {filearray: File-Backed Array for Out-of-Memory Computation},
1818
author = {Zhengjia Wang},
1919
year = {2026},
20-
note = {R package version 0.2.0.9001},
20+
note = {R package version 0.2.1},
2121
url = {https://dipterix.org/filearray/},
2222
}

index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

news/index.html

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

news/index.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## filearray 0.2.1
4+
5+
- Fixed incorrect `NA` propagation in complex array `collapse`:
6+
`NaN == NaN` is always `FALSE` per IEEE 754, so `NA` detection now
7+
uses `ISNAN()` instead of `== NA_REAL`. Also added a missing “result
8+
already `NA`” short-circuit guard matching the non-complex path.
9+
- Fixed `x[]` failure on `R-devel` (`>= 4.6.0`): replaced
10+
`tryCatch({ ...elt(1) })` in `fa_subset1` with `check_missing_dots()`,
11+
which correctly detects a missing first argument without relying on
12+
the error-throwing behavior of
13+
[`...elt()`](https://rdrr.io/r/base/dots.html) that changed in
14+
`R-devel`.
15+
- Replaced deprecated `Rf_findVarInFrame` (removed in R 4.5.0) with a
16+
compatibility wrapper `farr_findVarInFrame` that uses
17+
`R_existsVarInFrame` + `R_getVarEx` on R \>= 4.5.0 and falls back to
18+
`Rf_findVarInFrame` on older R.
19+
- Fixed multiple unprotected `SEXP` variables flagged by `rchk`:
20+
`result` in `test_farr_findVarInFrame_`, `dots` in
21+
`check_missing_dots`, and `dims` in `dropDimension`.
22+
323
## filearray 0.2.0
424

525
CRAN release: 2025-04-01

pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pkgdown: 2.2.0
33
pkgdown_sha: ~
44
articles:
55
performance: performance.html
6-
last_built: 2026-03-22T15:17Z
6+
last_built: 2026-03-22T16:21Z
77
urls:
88
reference: https://dipterix.org/filearray/reference
99
article: https://dipterix.org/filearray/articles

reference/FileArray-class.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)