diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 44f6be3..00de5e6 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -59,9 +59,6 @@ jobs: - name: Check for changes id: check_changes run: | - ls - cd docs - ls if [[ -n $(git status --porcelain) ]]; then echo "CHANGES=true" >> "$GITHUB_OUTPUT"; fi diff --git a/_docs/_site/index.html b/_docs/_site/index.html index fd77b08..5fabf16 100644 --- a/_docs/_site/index.html +++ b/_docs/_site/index.html @@ -192,51 +192,51 @@
run_examples = FALSE
, which is the default.
testscript.rs
/// HFft
-/// ## fft
-///
-/// `fft() -> HArray` \
-///
-/// Computes the fast fourier transform of the `HArray`. \
-///
-/// #### Returns
-///
-/// An `HArray`. \
-///
-/// #### Examples
-///
-/// ```r
-/// arr = array(c(1,2,3,4,5,6,7,8,9,10,11,12), c(3,4))
-/// dtype = HDataType$float32
-/// HArray$new_from_values(arr, dtype)
-/// HFft$fft(harray)
-/// ```
-///
-fft(harray: &HArray) -> HArray {
- fn HArray(harray.0.fft())
-
+ }/// HFft
+/// ## fft
+///
+/// `fft() -> HArray` \
+///
+/// Computes the fast fourier transform of the `HArray`. \
+///
+/// #### Returns
+///
+/// An `HArray`. \
+///
+/// #### Examples
+///
+/// ```r
+/// arr = array(c(1,2,3,4,5,6,7,8,9,10,11,12), c(3,4))
+/// dtype = HDataType$float32
+/// HArray$new_from_values(arr, dtype)
+/// HFft$fft(harray)
+/// ```
+///
+fn fft(harray: &HArray) -> HArray {
+.0.fft())
+ HArray(harray}
-/// HFft
-/// ## fft_mut
-///
-/// `fft_mut()` \
-///
-/// Computes the fast fourier transform of the `HArray`. \
-/// The operation is done in-place. \
+/// HFft
+/// ## fft_mut
+///
+/// `fft_mut()` \
+///
+/// Computes the fast fourier transform of the `HArray`. \
+/// The operation is done in-place. \
-/// #### Examples
-///
-/// ```r
-/// arr = array(c(1,2,3,4,5,6,7,8,9,10,11,12), c(3,4))
-/// dtype = HDataType$float32
-/// HArray$new_from_values(arr, dtype)
-/// HFft$fft_mut(harray)
-/// ```
-///
-fft_mut(harray: &mut HArray) {
- fn = harray.get_inner_mut();
- let inner_mut inner_mut.fft_mut()
- }
+/// #### Examples
+///
+/// ```r
+/// arr = array(c(1,2,3,4,5,6,7,8,9,10,11,12), c(3,4))
+/// dtype = HDataType$float32
+/// HArray$new_from_values(arr, dtype)
+/// HFft$fft_mut(harray)
+/// ```
+///
+fn fft_mut(harray: &mut HArray) {
+let inner_mut = harray.get_inner_mut();
+ .fft_mut()
+ inner_mut}
::generate_docs("./testscript.R") rdocs
The website will be generated on the current working directory.