using System; using System.Collections.Generic; namespace Unity.VisualScripting { public interface IMergedCollection<T> : ICollection<T> { bool Includes<TI>() where TI : T; bool Includes(Type elementType); } }