From 8550d5227baedac7786b94f00a6892edcdd8a411 Mon Sep 17 00:00:00 2001 From: Arne Kiesewetter Date: Sat, 24 Aug 2024 02:30:58 +0200 Subject: [PATCH] Change docs for the builder extension methods --- .../BlockAddingExtensions.cs | 40 +++++++++---------- .../EnumerableToolkit.Builder.csproj | 2 +- .../ParametrizedBlockAddingExtensions.cs | 40 +++++++++---------- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/EnumerableToolkit.Builder/BlockAddingExtensions.cs b/EnumerableToolkit.Builder/BlockAddingExtensions.cs index 5701328..5ee287f 100644 --- a/EnumerableToolkit.Builder/BlockAddingExtensions.cs +++ b/EnumerableToolkit.Builder/BlockAddingExtensions.cs @@ -9,7 +9,7 @@ namespace EnumerableToolkit.Builder public static class BlockAddingExtensions { /// - /// Adds a building block that concatenates the given items to the end of the current constructed enumerable sequence. + /// Adds a building block with default priority that concatenates the given items to the end of the current constructed enumerable sequence. /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -19,7 +19,7 @@ public static IEnumerableBuilder Concat(this IEnumerableBuilder builder => builder.Concat(firstItem.Yield().Concat(following)); /// - /// Adds a building block that concatenates the given sequence to the end of the current constructed enumerable sequence. + /// Adds a building block with default priority that concatenates the given sequence to the end of the current constructed enumerable sequence. /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -32,7 +32,7 @@ public static IEnumerableBuilder Concat(this IEnumerableBuilder builder } /// - /// Adds a building block that inserts the given items after every item that matches the given . + /// Adds a building block with default priority that inserts the given items after every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -43,7 +43,7 @@ public static IEnumerableBuilder InsertAfterEveryItem(this IEnumerableBuil => builder.InsertAfterEveryItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -57,7 +57,7 @@ public static IEnumerableBuilder InsertAfterEveryItem(this IEnumerableBuil } /// - /// Adds a building block that inserts the given items after every item that matches the given . + /// Adds a building block with default priority that inserts the given items after every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -68,7 +68,7 @@ public static IEnumerableBuilder InsertAfterEveryItem(this IEnumerableBuil => builder.InsertAfterEveryItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -78,7 +78,7 @@ public static IEnumerableBuilder InsertAfterEveryItem(this IEnumerableBuil => builder.InsertAfterEveryItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items after the first item that matches the given . + /// Adds a building block with default priority that inserts the given items after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -89,7 +89,7 @@ public static IEnumerableBuilder InsertAfterFirstItem(this IEnumerableBuil => builder.InsertAfterFirstItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -103,7 +103,7 @@ public static IEnumerableBuilder InsertAfterFirstItem(this IEnumerableBuil } /// - /// Adds a building block that inserts the given items after the first item that matches the given . + /// Adds a building block with default priority that inserts the given items after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -114,7 +114,7 @@ public static IEnumerableBuilder InsertAfterFirstItem(this IEnumerableBuil => builder.InsertAfterFirstItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -124,7 +124,7 @@ public static IEnumerableBuilder InsertAfterFirstItem(this IEnumerableBuil => builder.InsertAfterFirstItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items before every item that matches the given . + /// Adds a building block with default priority that inserts the given items before every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -135,7 +135,7 @@ public static IEnumerableBuilder InsertBeforeEveryItem(this IEnumerableBui => builder.InsertBeforeEveryItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -149,7 +149,7 @@ public static IEnumerableBuilder InsertBeforeEveryItem(this IEnumerableBui } /// - /// Adds a building block that inserts the given items before every item that matches the given . + /// Adds a building block with default priority that inserts the given items before every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -160,7 +160,7 @@ public static IEnumerableBuilder InsertBeforeEveryItem(this IEnumerableBui => builder.InsertBeforeEveryItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before every item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -170,7 +170,7 @@ public static IEnumerableBuilder InsertBeforeEveryItem(this IEnumerableBui => builder.InsertBeforeEveryItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items before the first item that matches the given . + /// Adds a building block with default priority that inserts the given items before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -181,7 +181,7 @@ public static IEnumerableBuilder InsertBeforeFirstItem(this IEnumerableBui => builder.InsertBeforeFirstItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -195,7 +195,7 @@ public static IEnumerableBuilder InsertBeforeFirstItem(this IEnumerableBui } /// - /// Adds a building block that inserts the given items before the first item that matches the given . + /// Adds a building block with default priority that inserts the given items before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -206,7 +206,7 @@ public static IEnumerableBuilder InsertBeforeFirstItem(this IEnumerableBui => builder.InsertBeforeFirstItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -216,7 +216,7 @@ public static IEnumerableBuilder InsertBeforeFirstItem(this IEnumerableBui => builder.InsertBeforeFirstItem(predicate.Wrap(), sequence); /// - /// Adds a building block that filters the current sequence based on the given . + /// Adds a building block with default priority that filters the current sequence based on the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -229,7 +229,7 @@ public static IEnumerableBuilder Where(this IEnumerableBuilder builder, } /// - /// Adds a building block that filters the current sequence based on the given . + /// Adds a building block with default priority that filters the current sequence based on the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. diff --git a/EnumerableToolkit.Builder/EnumerableToolkit.Builder.csproj b/EnumerableToolkit.Builder/EnumerableToolkit.Builder.csproj index ddfe28e..4098932 100644 --- a/EnumerableToolkit.Builder/EnumerableToolkit.Builder.csproj +++ b/EnumerableToolkit.Builder/EnumerableToolkit.Builder.csproj @@ -3,7 +3,7 @@ True $(AssemblyTitle) Banane9 - 1.2.0 + 2.0.0 Adds an EnumerableBuilder to incrementally construct an enumerable sequence out of building blocks. README.md https://github.com/Banane9/EnumerableToolkit diff --git a/EnumerableToolkit.Builder/ParametrizedBlockAddingExtensions.cs b/EnumerableToolkit.Builder/ParametrizedBlockAddingExtensions.cs index b67ea14..2c7cd6a 100644 --- a/EnumerableToolkit.Builder/ParametrizedBlockAddingExtensions.cs +++ b/EnumerableToolkit.Builder/ParametrizedBlockAddingExtensions.cs @@ -9,7 +9,7 @@ namespace EnumerableToolkit.Builder public static class ParametrizedBlockAddingExtensions { /// - /// Adds a building block that concatenates the given items to the end of the current constructed enumerable sequence. + /// Adds a building block with default priority that concatenates the given items to the end of the current constructed enumerable sequence. /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -20,7 +20,7 @@ public static IParametrizedEnumerableBuilder Concat builder.Concat(firstItem.Yield().Concat(following)); /// - /// Adds a building block that concatenates the given sequence to the end of the current constructed enumerable sequence. + /// Adds a building block with default priority that concatenates the given sequence to the end of the current constructed enumerable sequence. /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -34,7 +34,7 @@ public static IParametrizedEnumerableBuilder Concat - /// Adds a building block that inserts the given items after every item that matches the given . + /// Adds a building block with default priority that inserts the given items after every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -46,7 +46,7 @@ public static IParametrizedEnumerableBuilder InsertAfterEveryIte => builder.InsertAfterEveryItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -61,7 +61,7 @@ public static IParametrizedEnumerableBuilder InsertAfterEveryIte } /// - /// Adds a building block that inserts the given items after every item that matches the given . + /// Adds a building block with default priority that inserts the given items after every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -73,7 +73,7 @@ public static IParametrizedEnumerableBuilder InsertAfterEveryIte => builder.InsertAfterEveryItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -84,7 +84,7 @@ public static IParametrizedEnumerableBuilder InsertAfterEveryIte => builder.InsertAfterEveryItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items after the first item that matches the given . + /// Adds a building block with default priority that inserts the given items after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -96,7 +96,7 @@ public static IParametrizedEnumerableBuilder InsertAfterFirstIte => builder.InsertAfterFirstItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -111,7 +111,7 @@ public static IParametrizedEnumerableBuilder InsertAfterFirstIte } /// - /// Adds a building block that inserts the given items after the first item that matches the given . + /// Adds a building block with default priority that inserts the given items after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -123,7 +123,7 @@ public static IParametrizedEnumerableBuilder InsertAfterFirstIte => builder.InsertAfterFirstItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence after the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence after the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -134,7 +134,7 @@ public static IParametrizedEnumerableBuilder InsertAfterFirstIte => builder.InsertAfterFirstItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items before every item that matches the given . + /// Adds a building block with default priority that inserts the given items before every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -146,7 +146,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeEveryIt => builder.InsertBeforeEveryItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -161,7 +161,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeEveryIt } /// - /// Adds a building block that inserts the given items before every item that matches the given . + /// Adds a building block with default priority that inserts the given items before every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -173,7 +173,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeEveryIt => builder.InsertBeforeEveryItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before every item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before every item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -184,7 +184,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeEveryIt => builder.InsertBeforeEveryItem(predicate.Wrap(), sequence); /// - /// Adds a building block that inserts the given items before the first item that matches the given . + /// Adds a building block with default priority that inserts the given items before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -196,7 +196,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeFirstIt => builder.InsertBeforeFirstItem(predicate, firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -211,7 +211,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeFirstIt } /// - /// Adds a building block that inserts the given items before the first item that matches the given . + /// Adds a building block with default priority that inserts the given items before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -223,7 +223,7 @@ public static IParametrizedEnumerableBuilder InsertBeforeFirstIt => builder.InsertBeforeFirstItem(predicate.Wrap(), firstItem.Yield().Concat(following)); /// - /// Adds a building block that inserts the given sequence before the first item that matches the given . + /// Adds a building block with default priority that inserts the given sequence before the first item that matches the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence. @@ -245,7 +245,7 @@ public static IParametrizedBuildingBlock ToParametrized (IParametrizedBuildingBlock)(IParametrizedBuildingBlock)block; /// - /// Adds a building block that filters the current sequence based on the given . + /// Adds a building block with default priority that filters the current sequence based on the given . /// /// The type of the items in the generated sequence. /// The enumerable builder to add the building block to. @@ -259,7 +259,7 @@ public static IParametrizedEnumerableBuilder Where - /// Adds a building block that filters the current sequence based on the given . + /// Adds a building block with default priority that filters the current sequence based on the given . /// /// The type of the items in the generated sequence. /// The type of the parameters for generating a sequence.