1//! Node: `cxx:Method:Luau.Analysis:Analysis/include/Luau/Set.h:88:set_empty` 2//! Source: `Analysis/include/Luau/Set.h:88-91` (hand-ported) 3 4use crate::records::set::Set; 5 6impl<T: Clone + core::hash::Hash + PartialEq> Set<T> { 7 pub fn empty(&self) -> bool { 8 self.entry_count == 0 9 } 10}