1use crate::records::ast_array::AstArray; 2 3impl<T> AstArray<T> { 4 pub fn begin(&self) -> *const T { 5 self.data 6 } 7}