runmat-runtime 0.4.1

Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Sorting and set-related array builtins.

pub mod argsort;
pub mod intersect;
pub mod ismember;
pub mod issorted;
pub mod setdiff;
pub mod sort;
pub mod sortrows;
pub(crate) mod type_resolvers;
pub mod union;
pub mod unique;