You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fn new_from_values(arr: Robj, dtype: &HDataType) -> Robj {
assert!(arr.is_array());
// Ok to unwrap since it was checked that robj is an array.
let mut dim: Vec<usize> = arr
.dim()
.unwrap()
.iter()
.map(|z| z.inner() as usize)
.collect();
dim.reverse();
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: