Skip to main content

luaur_ast/methods/
ast_array_begin.rs

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