Example #1
0
        /// <inheritdoc/>
        public bool Equals(ORMultiDictionary<TKey, TValue> other)
        {
            if (ReferenceEquals(other, null)) return false;
            if (ReferenceEquals(this, other)) return true;

            return Equals(_underlying, other._underlying);
        }
Example #2
0
        public bool Equals(ORMultiDictionary <TKey, TValue> other)
        {
            if (ReferenceEquals(other, null))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(Equals(_underlying, other._underlying));
        }
Example #3
0
 public ORMultiDictionary<TKey, TValue> Merge(ORMultiDictionary<TKey, TValue> other) =>
     new ORMultiDictionary<TKey, TValue>(_underlying.Merge(other._underlying));