Top 20 NuGet Packages depending on LINQBridge (Embedded)

Total dependencies: 31

C# source implementation that enhances LINQ to Objects with the method PreScan. Performs a pre-scan (exclusive prefix sum) on a sequence of elements.
C# source implementation that enhances LINQ to Objects with the method Scan. Peforms a scan (inclusive prefix sum) on a sequence of elements.
C# source implementation that enhances LINQ to Objects with the method SingleOrFallback. Returns the single element in the given sequence, or the result of executing a fallback delegate if the sequence is empty. This method throws an exception if there is more than one element in the sequence.
C# source implementation that enhances LINQ to Objects with the method SkipUntil. Skips items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last skipped.
C# source implementation that enhances LINQ to Objects with the method Split. Splits the source sequence by a separator.
C# source implementation that enhances LINQ to Objects with the method EquiZip. Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
C# source implementation that enhances LINQ to Objects with the method Concat. Returns a sequence consisting of the head element and the given tail elements.
C# source implementation that enhances LINQ to Objects with the method Pairwise. Returns a sequence resulting from applying a function to each element in the source sequence and its predecessor, with the exception of the first element which is only returned as the predecessor of the second element.
C# source implementation that enhances LINQ to Objects with the method OrderedMerge. Merges two heterogeneous sequences ordered by a common key into a homogeneous sequence.
C# source implementation that enhances LINQ to Objects with the method ForEach. Immediately executes the given action on each element in the source sequence.
C# source implementation that enhances LINQ to Objects with the method MinBy. Returns the minimal element of the given sequence, based on the given projection.