Esempio n. 1
0
    public static bool Remove <K, T>(this NativeMultiHashMap <K, T> HashMap, K Key, T Value) where T : struct, IEquatable <T> where K : struct, IEquatable <K>
    {
        if (HashMap.SelectIterator(Key, Value, out var It))
        {
            HashMap.Remove(It);

            return(true);
        }
        return(false);
    }