Skip to main content

luaur_ast/methods/
ast_array_rend.rs

1use crate::records::ast_array::AstArray;
2
3impl<T> AstArray<T> {
4    pub fn rend(&self) -> core::iter::Rev<core::slice::Iter<'_, T>> {
5        self.rbegin()
6    }
7}