ExtraTopLevelOperators.dict<'Key,'Value> — Funkcja (F#)
Tworzy spis wyszukiwania tylko do odczytu z sekwencji par klucz wartość.Obiekty klucza są indeksowane, przy użyciu rodzajowy mieszania i równości.
Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Core.ExtraTopLevelOperators
Zgromadzenie: FSharp.Core (w FSharp.Core.dll)
// Signature:
dict : seq<'Key * 'Value> -> IDictionary<'Key,'Value> (requires equality)
// Usage:
dict keyValuePairs
Parametry
- keyValuePairs
Typ: seq<'Key * 'Value>
Wartość zwracana
Obiekt, który implementuje IDictionary , reprezentuje danej kolekcji.
Uwagi
Ta funkcja o nazwie CreateDictionary w skompilowane zestawy.Jeżeli języka, niż F# lub przez odbicie, uzyskują dostęp do funkcji, należy użyć tej nazwy.
Przykład
Poniższy przykład kodu pokazuje użycie dict funkcji.
open System
open System.Collections.Generic
let seq1 = seq { for i in 1..10 -> i, i*i }
let dictionary1 = dict seq1
if dictionary1.IsReadOnly then
Console.WriteLine("The dictionary is read only.")
// The type is a read only IDictionary.
// If you try to add or remove elements,
// NotSupportedException is generated, as in the following line:
//dictionary1.Add(new KeyValuePair<int, int>(0, 0))
// You can use read-only methods as in the following lines.
if dictionary1.ContainsKey(5) then
Console.WriteLine("Value for key 5: {0}", dictionary1.Item(5))
for elem in dictionary1 do
Console.WriteLine("Key: {0} Value: {1}", elem.Key, elem.Value)
Wprowadza dane wyjściowe.
Platformy
Windows 8, Windows 7, Windows Server 2012 Windows Server 2008 R2
Informacje o wersji
F# Core wersji biblioteki
Obsługiwane: 2.0, 4.0, przenośne