AnkiU.AnkiCore.Sched.GroupChildrenMain(System.Collections.Generic.List)

Here are the examples of the csharp api class AnkiU.AnkiCore.Sched.GroupChildrenMain(System.Collections.Generic.List) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Anki-Universal
Source File: Sched.cs
private List<DeckDueNode> GroupChildren(List<DeckDueNode> grps)
        {
            // first, split the group names into components
            foreach (DeckDueNode g in grps)
            {
                g.Names = g.Names[0].Split(new string[] { "::" }, StringSplitOptions.None);
            }
            // and sort based on those components
            grps.Sort();
            // then run main function
            return GroupChildrenMain(grps);
        }

2. Example

Project: Anki-Universal
Source File: Sched.cs
private List<DeckDueNode> GroupChildrenMain(List<DeckDueNode> grps)
        {
          /n ..... /n //View Source file for more details /n }