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