Skip to content

Commit 43eb760

Browse files
committed
jarl exceptions vignette
1 parent aef0951 commit 43eb760

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

RcppTskit/vignettes/RcppTskit_intro.qmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,16 +277,20 @@ For example, the above `R` function `ts_load()` effectively calls:
277277
```{r}
278278
#| label: use_case_1_dev_funcs
279279
# Low-level R function, which further calls the C++ function
280+
# jarl-ignore internal_function: vignette
280281
RcppTskit:::rtsk_treeseq_load
281282
282283
# C++ function (see also the C++ source code)
284+
# jarl-ignore internal_function: vignette
283285
RcppTskit:::`_RcppTskit_rtsk_treeseq_load`
284286
285287
# The same as the ts_load() example, but exposing the external pointer
288+
# jarl-ignore internal_function: vignette
286289
xptr <- RcppTskit:::rtsk_treeseq_load(ts_file)
287290
methods::is(xptr)
288291
289292
# We pass the external pointer to other low-level functions
293+
# jarl-ignore internal_function: vignette
290294
RcppTskit:::rtsk_treeseq_get_num_individuals(xptr)
291295
```
292296

0 commit comments

Comments
 (0)