IReadOnlyShortcodeCollection Interface
Namespace
Statiq.Common
Interfaces
  • IReadOnlyCollection<string>
  • IEnumerable<string>
  • IEnumerable
Implementing Types
graph BT Type-.->Interface0["IReadOnlyCollection<string>"] Type-.->Interface1["IEnumerable<string>"] Type-.->Interface2["IEnumerable"] Type["IReadOnlyShortcodeCollection"] class Type type-node Implementing0["TestShortcodeCollection"]-.->Type click Implementing0 "/api/Statiq.Testing/TestShortcodeCollection" Implementing1["IShortcodeCollection"]-.->Type click Implementing1 "/api/Statiq.Common/IShortcodeCollection"

Syntax

public interface IReadOnlyShortcodeCollection : IReadOnlyCollection<string>, IEnumerable<string>, 
    IEnumerable

Methods

Name Return Value Summary
Contains(string) bool
CreateInstance(string) IShortcode

Extension Methods

Name Value Summary
Concat<string>(string) IEnumerable<T>
GetNext<string>(string, IEqualityComparer<string>) T
GetNext<string>(string) T
GetPrevious<string>(string, IEqualityComparer<string>) T
GetPrevious<string>(string) T
GroupByMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, TElement>, IEqualityComparer<TKey>) IEnumerable<IGrouping<TKey, TElement>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys. The keys are compared by using a comparer and each group's elements are projected by using a specified function.
GroupByMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, TElement>) IEnumerable<IGrouping<TKey, TElement>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys and projects the elements for each group by using a specified function.
GroupByMany<string, TKey>(Func<string, IEnumerable<TKey>>, IEqualityComparer<TKey>) IEnumerable<IGrouping<TKey, TSource>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys and compares the keys by using a specified comparer.
GroupByMany<string, TKey>(Func<string, IEnumerable<TKey>>) IEnumerable<IGrouping<TKey, TSource>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys.
GroupByManyToMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, IEnumerable<TElement>>, IEqualityComparer<TKey>) IEnumerable<IGrouping<TKey, TElement>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys. The keys are compared by using a comparer and each group's elements are projected by using a specified function that returns a sequence of elements.
GroupByManyToMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, IEnumerable<TElement>>) IEnumerable<IGrouping<TKey, TElement>>
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys and projects the elements for each group by using a specified function that returns a sequence of elements.
ParallelForEachAsync<string>(Func<string, Task>, CancellationToken) Task
ParallelSelectAsync<string, TResult>(Func<string, Task<TResult>>, CancellationToken) Task<IEnumerable<TResult>>
Invokes an async selector in parallel.
ParallelSelectManyAsync<string, TResult>(Func<string, Task<IEnumerable<TResult>>>, CancellationToken) Task<IEnumerable<TResult>>
Invokes an async selector that returns multiple results in parallel.
ParallelWhereAsync<string>(Func<string, Task<bool>>, CancellationToken) Task<IEnumerable<TSource>>
StartsWith<string>(IEnumerable<string>, IEqualityComparer<string>) bool
Determines whether the items starts with the specified values.
StartsWith<string>(IEnumerable<string>) bool
Determines whether the items starts with the specified values.
ThrowIfNull<IReadOnlyShortcodeCollection>(string) T
ToDocument<IReadOnlyShortcodeCollection>(IContentProvider) IDocument
ToDocument<IReadOnlyShortcodeCollection>(IEnumerable<KeyValuePair<string, object>>, IContentProvider) IDocument
ToDocument<IReadOnlyShortcodeCollection>(NormalizedPath, IContentProvider) IDocument
ToDocument<IReadOnlyShortcodeCollection>(NormalizedPath, IEnumerable<KeyValuePair<string, object>>, IContentProvider) IDocument
ToDocument<IReadOnlyShortcodeCollection>(NormalizedPath, NormalizedPath, IContentProvider) IDocument
ToDocument<IReadOnlyShortcodeCollection>(NormalizedPath, NormalizedPath, IEnumerable<KeyValuePair<string, object>>, IContentProvider) IDocument
ToDocuments<string>(Func<string, IContentProvider>) IEnumerable<IDocument>
ToDocuments<string>(Func<string, IEnumerable<KeyValuePair<string, object>>>, Func<string, IContentProvider>) IEnumerable<IDocument>
ToDocuments<string>(Func<string, NormalizedPath>, Func<string, IContentProvider>) IEnumerable<IDocument>
ToDocuments<string>(Func<string, NormalizedPath>, Func<string, IEnumerable<KeyValuePair<string, object>>>, Func<string, IContentProvider>) IEnumerable<IDocument>
ToDocuments<string>(Func<string, NormalizedPath>, Func<string, NormalizedPath>, Func<string, IContentProvider>) IEnumerable<IDocument>
ToDocuments<string>(Func<string, NormalizedPath>, Func<string, NormalizedPath>, Func<string, IEnumerable<KeyValuePair<string, object>>>, Func<string, IContentProvider>) IEnumerable<IDocument>
ToLookupMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, TElement>, IEqualityComparer<TKey>) ILookup<TKey, TElement>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys. The keys are compared by using a comparer and each group's elements are projected by using a specified function.
ToLookupMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, TElement>) ILookup<TKey, TElement>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys and projects the elements for each group by using a specified function.
ToLookupMany<string, TKey>(Func<string, IEnumerable<TKey>>, IEqualityComparer<TKey>) ILookup<TKey, TSource>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys and compares the keys by using a specified comparer.
ToLookupMany<string, TKey>(Func<string, IEnumerable<TKey>>) ILookup<TKey, TSource>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys.
ToLookupManyToMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, IEnumerable<TElement>>, IEqualityComparer<TKey>) ILookup<TKey, TElement>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys. The keys are compared by using a comparer and each group's elements are projected by using a specified function that returns a sequence of elements.
ToLookupManyToMany<string, TKey, TElement>(Func<string, IEnumerable<TKey>>, Func<string, IEnumerable<TElement>>) ILookup<TKey, TElement>
Creates a lookup from a sequence according to a specified key selector function that returns a sequence of keys and projects the elements for each group by using a specified function that returns a sequence of elements.
ToStringTable<string>(string[], Func<string, object>[]) string