1use crate::{ArrayCompute, GpuArrayView}; 2 3pub trait ViewArray {} 4 5impl<'a, A> ViewArray for GpuArrayView<'a, A> where A: ArrayCompute {}