123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="utf-8"?>
- <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
- <metadata>
- <id>System.Collections.Immutable</id>
- <version>6.0.0</version>
- <authors>Microsoft</authors>
- <license type="expression">MIT</license>
- <licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
- <icon>Icon.png</icon>
- <projectUrl>https://dot.net/</projectUrl>
- <description>This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity.
- Commonly Used Types:
- System.Collections.Immutable.ImmutableArray
- System.Collections.Immutable.ImmutableArray<T>
- System.Collections.Immutable.ImmutableDictionary
- System.Collections.Immutable.ImmutableDictionary<TKey,TValue>
- System.Collections.Immutable.ImmutableHashSet
- System.Collections.Immutable.ImmutableHashSet<T>
- System.Collections.Immutable.ImmutableList
- System.Collections.Immutable.ImmutableList<T>
- System.Collections.Immutable.ImmutableQueue
- System.Collections.Immutable.ImmutableQueue<T>
- System.Collections.Immutable.ImmutableSortedDictionary
- System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>
- System.Collections.Immutable.ImmutableSortedSet
- System.Collections.Immutable.ImmutableSortedSet<T>
- System.Collections.Immutable.ImmutableStack
- System.Collections.Immutable.ImmutableStack<T></description>
- <releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes>
- <copyright>© Microsoft Corporation. All rights reserved.</copyright>
- <serviceable>true</serviceable>
- <repository type="git" url="https://github.com/dotnet/runtime" commit="4822e3c3aa77eb82b2fb33c9321f923cf11ddde6" />
- <dependencies>
- <group targetFramework=".NETFramework4.6.1">
- <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
- <dependency id="System.Memory" version="4.5.4" exclude="Build,Analyzers" />
- </group>
- <group targetFramework="net6.0">
- <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
- </group>
- <group targetFramework=".NETStandard2.0">
- <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
- <dependency id="System.Memory" version="4.5.4" exclude="Build,Analyzers" />
- </group>
- </dependencies>
- </metadata>
- </package>
|