// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Collections
{
using System.Collections;
using System.Collections.Generic;
public interface IPerspexList : IList, IPerspexReadOnlyList
{
void AddRange(IEnumerable items);
void InsertRange(int index, IEnumerable items);
void RemoveAll(IEnumerable items);
}
}