Enum GroupWhileAction
Actions you can instruct GroupWhile<TSource>(IEnumerable<TSource>, Func<TSource, Boolean, GroupWhileAction>) to take from its callback.
Namespace: Fluency.Execution.Parsing
Assembly: Execution.dll
Syntax
public enum GroupWhileAction
Fields
| Name | Description |
|---|---|
| In | Add the current item into the group, starting a new one if necessary. |
| LeaveExclude | Finish the current group and don't put this item in it. |
| LeaveInclude | Finish the current group and put this item in it. |
| StillOut | We're not making a group, and this element should stay out of the group. Only return this if pickAction was passed false. |