Show / Hide Table of Contents

Class Grouped<TSource>

Represents a group of elements from GroupUntil<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Boolean) or GroupWhile<TSource>(IEnumerable<TSource>, Func<TSource, Boolean, GroupWhileAction>).

Inheritance
System.Object
Grouped<TSource>
Implements
System.Collections.Generic.IEnumerable<TSource>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fluency.Execution.Parsing
Assembly: Execution.dll
Syntax
public class Grouped<TSource> : IEnumerable<TSource>, IEnumerable
Type Parameters
Name Description
TSource

Constructors

| Improve this Doc View Source

Grouped(List<TSource>, Int32, Int32)

Construct a new group.

Declaration
public Grouped(List<TSource> source, int startIndex, int endIndex)
Parameters
Type Name Description
System.Collections.Generic.List<TSource> source
System.Int32 startIndex
System.Int32 endIndex

Properties

| Improve this Doc View Source

Indexes

The inclusive range of indexes this group was taken from.

Declaration
public SourceRange Indexes { get; set; }
Property Value
Type Description
SourceRange

Explicit Interface Implementations

| Improve this Doc View Source

IEnumerable<TSource>.GetEnumerator()

Declaration
IEnumerator<TSource> IEnumerable<TSource>.GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<TSource>
| Improve this Doc View Source

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable

Extension Methods

ParseExtensions.SkipBetween<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Func<TSource, Boolean>)
ParseExtensions.MergeLastIf<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Func<TSource, TSource, TSource>)
ParseExtensions.GroupWhile<TSource>(IEnumerable<TSource>, Func<TSource, Boolean, GroupWhileAction>)
ParseExtensions.GroupUntil<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Boolean)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX