File IContainer.cs
File List > LemonUI > LemonUI > IContainer.cs
Go to the documentation of this file
using System;
namespace LemonUI
{
public interface IContainer<T> : IRecalculable, IProcessable
{
#region Functions
void Add(T item);
void Remove(T item);
void Remove(Func<T, bool> func);
void Clear();
bool Contains(T item);
#endregion
}
}