Yuh.Collections 1.0.0-rc.1

This is a prerelease version of Yuh.Collections.
dotnet add package Yuh.Collections --version 1.0.0-rc.1
NuGet\Install-Package Yuh.Collections -Version 1.0.0-rc.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Yuh.Collections" Version="1.0.0-rc.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Yuh.Collections --version 1.0.0-rc.1
#r "nuget: Yuh.Collections, 1.0.0-rc.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Yuh.Collections as a Cake Addin
#addin nuget:?package=Yuh.Collections&version=1.0.0-rc.1&prerelease

// Install Yuh.Collections as a Cake Tool
#tool nuget:?package=Yuh.Collections&version=1.0.0-rc.1&prerelease

Yuh.Collections

Overview

This library provides collection types including deque, and also provides methods to search through a collection.

Features

Advanced Collection Types

Deque

Deque (double-ended-queue) supports addition or removal of elements at the front or back of collection in constant time. In other words, deque has features of both stack and queue.

Collection Builder

Collection-builder is literally used to build collections such as array, list, string and so on. Extension methods for IEnumerable<T> perform little better than the collection-builder in this library, but the collection-builder supports merging IEnumerable<T>s like StringBuilder class.

Aggressive Use of Span<T>

We actively use Span<T> or ReadOnlySpan<T> as a argument of methods or in internal implementations. This enables functions to run faster and save memory.

We also provide collection types that can be converted to Span<T> or ReadOnlySpan<T>.

How to Install

To install this library into your projects, please visit here (NuGet) and install the NuGet package in the way you like.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-rc.1 39 6/23/2024
0.3.1 102 2/22/2024
0.3.0 104 2/22/2024
0.2.0 91 2/3/2024
0.1.0 83 1/28/2024