Foobricator.Sources.Iterator.NextAll C# (CSharp) Méthode

NextAll() public static méthode

Reevaluate all iterables in a matching scope
public static NextAll ( string scope ) : void
scope string
Résultat void
        public static void NextAll(string scope)
        {
            IList<string> inputScopes = scope.Split(':');

            List<string> relavanScopes = _instances
                .Keys
                .Where(key => key.Split(':').Intersect(inputScopes).Any())
                .Distinct()
                .ToList();

            relavanScopes.ForEach(x => _instances[x].ForEach(y => y.Next()));
        }