runmat-vm 0.5.0

RunMat virtual machine and bytecode interpreter
Documentation
1
2
3
4
5
6
use runmat_builtins::Value;
use runmat_runtime::RuntimeError;

pub async fn generic_index(base: &Value, indices: &[f64]) -> Result<Value, RuntimeError> {
    runmat_runtime::perform_indexing(base, indices).await
}