luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
//! Node: `cxx:Method:Luau.Analysis:Analysis/include/Luau/Set.h:99:set_contains`
//! Source: `Analysis/include/Luau/Set.h:99-102` (hand-ported)

use crate::records::set::Set;

impl<T: Clone + core::hash::Hash + PartialEq> Set<T> {
    pub fn contains(&self, element: &T) -> bool {
        self.count(element) != 0
    }
}