Skip to content

Commit

Permalink
Updated prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
tbetcke committed Mar 15, 2024
1 parent daf6941 commit b849ede
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions rlst/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,18 @@ pub use rlst_proc_macro::rlst_static_array;
pub use rlst_proc_macro::rlst_static_type;

pub use rlst_dense::gemm::Gemm;
pub use rlst_dense::traits::*;
pub use rlst_dense::types::*;

pub use rlst_dense::traits::{
ChunkedAccess, RandomAccessByRef, RandomAccessByValue, RandomAccessMut, RawAccess,
RawAccessMut, UnsafeRandomAccessByRef, UnsafeRandomAccessByValue, UnsafeRandomAccessMut,
};

pub use rlst_dense::traits::{
AijIterator, AsMultiIndex, DefaultIterator, DefaultIteratorMut, MultInto, MultIntoResize,
NumberOfElements, ResizeInPlace, Shape, Stride,
};

pub use rlst_dense::types::{c32, c64, DataChunk, RlstError, RlstResult, RlstScalar, TransMode};

pub use rlst_dense::base_array::BaseArray;
pub use rlst_dense::data_container::{
Expand Down

0 comments on commit b849ede

Please sign in to comment.