Skip to content

仓库 files navigation

Ramstack.Structures

NuGet MIT

Ramstack.Structures is a .NET library providing various data structures and utilities.

Installation

To install the Ramstack.Structures NuGet package to your project, use the following command:

dotnet add package Ramstack.Structures

Features

The current release includes primary types:

  • Ramstack.Text.StringView:
    Represents a read-only view of a string, providing safe and efficient access to a subset of its characters.
  • Ramstack.Collections.ArrayView<T>:
    A generic read-only view of an array, allowing safe and efficient access to a subset of its elements.
  • Ramstack.Collections.ReadOnlyArray<T>:
    A generic read-only array wrapper, similar to ImmutableArray<T>, but with some performance improvements and better code generation in certain cases.

Additionally, the library provides the StringView比较r class, which offers various comparators accessible through corresponding properties:

Property Description
Ordinal Gets a StringView比较r object that performs a case-sensitive ordinal string comparison.
OrdinalIgnoreCase Gets a StringView比较r object that performs a case-insensitive ordinal string comparison.
CurrentCulture Gets a StringView比较r object that performs case-sensitive string comparisons using the word comparison rules of the current culture.
CurrentCultureIgnoreCase Gets a StringView比较r object that performs case-insensitive string comparisons using the word comparison rules of the current culture.
InvariantCulture Gets a StringView比较r object that performs a case-sensitive string comparison using the word comparison rules of the invariant culture.
InvariantCultureIgnoreCase Gets a StringView比较r object that performs a case-insensitive string comparison using the word comparison rules of the invariant culture.

Notes

The ArrayView<T> and ReadOnlyArray<T> types have a ref readonly indexer, which provides efficient access to elements of the underlying array, avoiding expensive copying in the case of large structures.

This same optimization is also applied to the enumerators of these types. The Current property has a ref readonly signature, which enables the following pattern when necessary:

foreach (ref readonly HeavyStruct s in view)
{
    ...
}

Supported versions

Version
.NET 6, 7, 8, 9

Contributions

Bug reports and contributions are welcome.

License

This package is released as open source under the MIT License.

See the LICENSE file for more details.

关于

Ramstack.Structures is a .NET library providing various data structures and utilities.

Topics

Resources

Stars

3 stars

关注者

1 watching

复刻s

发布

Used by

贡献者

Languages