runmat-runtime 0.6.0

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
13
14
15
//! Sorting and set-related array builtins.

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