luaur-common 0.1.3

Foundational data structures and flags for the luaur Luau-in-Rust toolchain.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::records::vec_deque::VecDeque;

impl<T> VecDeque<T> {
    /// C++ destructor logic for VecDeque.
    /// In Rust, this is implemented via the `Drop` trait on the record itself.
    /// This method is a stub for the C++ destructor entry point.
    pub fn vec_deque_vec_deque(&mut self) {
        // The logic is handled by the Drop implementation in the record file.
    }
}