Boo.Lang.Compiler.TypeSystem.Ambiguous.Any C# (CSharp) Метод

Any() публичный Метод

public Any ( EntityPredicate predicate ) : bool
predicate EntityPredicate
Результат bool
        public bool Any(EntityPredicate predicate)
        {
            foreach (IEntity entity in _entities)
            {
                if (predicate(entity)) return true;
            }
            return false;
        }