There was an error while loading. Please reload this page.
Creates implementation of ILazyDictionary(TKey, TValue).
Namespace: CodeJam.CollectionsAssembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static ILazyDictionary<TKey, TValue> Create<TKey, TValue>( Func<TKey, TValue> valueFactory, IEqualityComparer<TKey> comparer, LazyThreadSafetyMode threadSafety )
VB
Public Shared Function Create(Of TKey, TValue) ( valueFactory As Func(Of TKey, TValue), comparer As IEqualityComparer(Of TKey), threadSafety As LazyThreadSafetyMode ) As ILazyDictionary(Of TKey, TValue)
F#
static member Create : valueFactory : Func<'TKey, 'TValue> * comparer : IEqualityComparer<'TKey> * threadSafety : LazyThreadSafetyMode -> ILazyDictionary<'TKey, 'TValue>
Type: ILazyDictionary(TKey, TValue)ILazyDictionary(TKey, TValue) implementation.
LazyDictionary ClassCreate OverloadCodeJam.Collections Namespace