From 8b739bdef937dcba94fe831bf36cac07d04fdf00 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Sun, 17 Mar 2024 00:30:20 +0100 Subject: [PATCH] Consistency in referring alternative functions in xml doc --- src/FSharp.Control.TaskSeq/TaskSeq.fsi | 76 +++++++++++++------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/src/FSharp.Control.TaskSeq/TaskSeq.fsi b/src/FSharp.Control.TaskSeq/TaskSeq.fsi index e487992..3c4fd63 100644 --- a/src/FSharp.Control.TaskSeq/TaskSeq.fsi +++ b/src/FSharp.Control.TaskSeq/TaskSeq.fsi @@ -50,7 +50,7 @@ type TaskSeq = /// /// Returns the length of the sequence of all items for which the returns true. /// This operation requires the whole sequence to be evaluated and should not be used on potentially infinite sequences. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to test whether an item in the input sequence should be included in the count. @@ -61,7 +61,7 @@ type TaskSeq = /// /// Returns the length of the sequence of all items for which the returns true. /// This operation requires the whole sequence to be evaluated and should not be used on potentially infinite sequences. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// A function to test whether an item in the input sequence should be included in the count. @@ -93,7 +93,7 @@ type TaskSeq = /// Returns the greatest of all elements of the task sequence, compared via /// on the result of applying the function to each element. /// - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items from the input sequence into comparable keys. @@ -107,7 +107,7 @@ type TaskSeq = /// Returns the smallest of all elements of the task sequence, compared via /// on the result of applying the function to each element. /// - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items from the input sequence into comparable keys. @@ -121,7 +121,7 @@ type TaskSeq = /// Returns the greatest of all elements of the task sequence, compared via /// on the result of applying the function to each element. /// - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// A function to transform items from the input sequence into comparable keys. @@ -135,7 +135,7 @@ type TaskSeq = /// Returns the smallest of all elements of the task sequence, compared via /// on the result of applying the function to each element. /// - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// A function to transform items from the input sequence into comparable keys. @@ -502,7 +502,7 @@ type TaskSeq = /// /// Casts each item in the untyped input task sequence. If the input sequence contains value types - /// it is recommended to use instead. + /// it is recommended to consider using instead. /// /// /// The input task sequence. @@ -573,7 +573,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items from the input task sequence. @@ -603,7 +603,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to transform items from the input task sequence. @@ -634,7 +634,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items from the input task sequence into a task sequence. @@ -650,7 +650,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items from the input task sequence into a regular sequence. @@ -666,7 +666,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to transform items from the input task sequence into a task sequence. @@ -683,7 +683,7 @@ type TaskSeq = /// The given function will be applied as elements are pulled using async enumerators retrieved from the /// input task sequence. /// - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to transform items from the input task sequence into a regular sequence. @@ -801,7 +801,7 @@ type TaskSeq = /// /// Applies the given function to each element of the task sequence. Returns /// a sequence comprised of the results where the function returns . - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items of type into options of type . @@ -814,7 +814,7 @@ type TaskSeq = /// Applies the given asynchronous function to each element of the task sequence. /// Returns a sequence comprised of the results where the function returns a result /// of . - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to transform items of type into options of type . @@ -826,7 +826,7 @@ type TaskSeq = /// /// Returns a new task sequence containing only the elements of the collection /// for which the given function returns . - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to test whether an item in the input sequence should be included in the output or not. @@ -838,7 +838,7 @@ type TaskSeq = /// /// Returns a new task sequence containing only the elements of the input sequence /// for which the given function returns . - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to test whether an item in the input sequence should be included in the output or not. @@ -850,7 +850,7 @@ type TaskSeq = /// /// Returns a new task sequence containing only the elements of the collection /// for which the given function returns . - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// Alias for . /// @@ -864,7 +864,7 @@ type TaskSeq = /// /// Returns a new task sequence containing only the elements of the input sequence /// for which the given function returns . - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// Alias for . /// @@ -942,7 +942,7 @@ type TaskSeq = /// given function returns , and then returns no further elements. /// Stops consuming the source and yielding items as soon as the predicate returns false. /// (see also ). - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to false when no more items should be returned. @@ -956,7 +956,7 @@ type TaskSeq = /// given asynchronous function returns , and then returns no further elements. /// Stops consuming the source and yielding items as soon as the predicate returns false. /// (see also ). - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to false when no more items should be returned. @@ -970,7 +970,7 @@ type TaskSeq = /// function returns , returns that element /// and then returns no further elements (see also ). This function returns /// at least one element of a non-empty sequence, or the empty task sequence if the input is empty. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to false when no more items should be returned. @@ -984,7 +984,7 @@ type TaskSeq = /// asynchronous function returns , returns that element /// and then returns no further elements (see also ). This function returns /// at least one element of a non-empty sequence, or the empty task sequence if the input is empty. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to false when no more items should be returned. @@ -1026,7 +1026,7 @@ type TaskSeq = /// function returns , also skips that element /// and then yields the remaining elements (see also ). It will thus always skip /// at least one element of a non-empty sequence, or returns the empty task sequence if the input is empty. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// ` /// /// A function that evaluates to false for the final item to be skipped. @@ -1040,7 +1040,7 @@ type TaskSeq = /// function returns , also skips that element /// and then yields the remaining elements (see also ). It will thus always skip /// at least one element of a non-empty sequence, or returns the empty task sequence if the input is empty. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to false for the final item to be skipped. @@ -1052,7 +1052,7 @@ type TaskSeq = /// /// Applies the given function to successive elements, returning the first result where /// the function returns . - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// A function to transform items of type into options of type . /// The input task sequence. @@ -1063,7 +1063,7 @@ type TaskSeq = /// /// Applies the given asynchronous function to successive elements, returning the first result where /// the function returns . - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// An asynchronous function to transform items of type into options of type . /// The input task sequence. @@ -1074,7 +1074,7 @@ type TaskSeq = /// /// Returns the first element for which the given function returns /// . Returns if no such element exists. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to a when given an item in the sequence. @@ -1086,7 +1086,7 @@ type TaskSeq = /// /// Returns the first element for which the given asynchronous function returns /// . Returns if no such element exists. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to a when given an item in the sequence. @@ -1098,7 +1098,7 @@ type TaskSeq = /// /// Returns the index, starting from zero, for which the given function returns /// . Returns if no such element exists. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to a when given an item in the sequence. @@ -1110,7 +1110,7 @@ type TaskSeq = /// /// Returns the index, starting from zero, for which the given asynchronous function returns /// . Returns if no such element exists. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to a when given an item in the sequence. @@ -1122,7 +1122,7 @@ type TaskSeq = /// /// Applies the given function to successive elements, returning the first result where /// the function returns . Throws an exception if none is found. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function to transform items of type into options of type . @@ -1135,7 +1135,7 @@ type TaskSeq = /// /// Applies the given asynchronous function to successive elements, returning the first result where /// the function returns . Throws an exception if none is found. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function to transform items of type into options of type . @@ -1148,7 +1148,7 @@ type TaskSeq = /// /// Returns the first element for which the given function returns . /// Throws an exception if none is found. - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to a when given an item in the sequence. @@ -1161,7 +1161,7 @@ type TaskSeq = /// /// Returns the first element for which the given asynchronous function returns . /// Throws an exception if none is found. - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to a when given an item in the sequence. @@ -1174,7 +1174,7 @@ type TaskSeq = /// /// Returns the index, starting from zero, of the first element for which the given function /// returns . - /// If is asynchronous, use . + /// If is asynchronous, consider using . /// /// /// A function that evaluates to a when given an item in the sequence. @@ -1187,7 +1187,7 @@ type TaskSeq = /// /// Returns the index, starting from zero, of the first element for which the given function /// returns . - /// If is synchronous, use . + /// If is synchronous, consider using . /// /// /// An asynchronous function that evaluates to a when given an item in the sequence. @@ -1291,7 +1291,7 @@ type TaskSeq = /// If the accumulator function is asynchronous, consider using . /// argument of type through the computation. If the input function is and the elements are /// then computes . - /// If the accumulator function is asynchronous, use . + /// If the accumulator function is asynchronous, consider using . /// /// /// A function that updates the state with each element from the sequence.