Constructor | Description |
|
|
Instance member | Description |
|
|
Full Usage:
this.Comparer
Returns: 'ComparerTag
|
|
|
|
Full Usage:
this.ComputeHashCode()
Returns: int
|
|
Full Usage:
this.ContainsKey(k)
Parameters:
'Key
Returns: bool
|
|
Full Usage:
this.Count
Returns: int
|
|
Full Usage:
this.Exists(f)
Parameters:
'Key -> 'T -> bool
Returns: bool
|
|
|
|
Full Usage:
this.First(f)
Parameters:
'Key -> 'T -> 'a option
Returns: 'a option
|
|
Full Usage:
this.Fold(f) (acc)
Parameters:
'Key -> 'T -> 'a -> 'a
acc : 'a
Returns: 'a
|
|
Full Usage:
this.FoldAndMap(f) (z)
Parameters:
'Key -> 'T -> 'a -> 'b * 'a
z : 'a
Returns: Map<'Key, 'b, 'ComparerTag> * 'a
|
|
Full Usage:
this.FoldSection(lo) (hi) (f) (acc)
Parameters:
'Key
hi : 'Key
f : 'Key -> 'T -> 'a -> 'a
acc : 'a
Returns: 'a
|
|
Full Usage:
this.ForAll(f)
Parameters:
'Key -> 'T -> bool
Returns: bool
|
|
Full Usage:
this.IsEmpty
Returns: bool
|
|
Full Usage:
this.[k]
Parameters:
'Key
Returns: 'T
|
|
Full Usage:
this.Iterate(f)
Parameters:
'Key -> 'T -> unit
|
|
|
|
|
|
|
|
|
|
Full Usage:
this.ToArray()
Returns: ('Key * 'T)[]
|
|
Full Usage:
this.ToList()
Returns: ('Key * 'T) list
|
|
|
|
Full Usage:
this.TryFind(k)
Parameters:
'Key
Returns: 'T option
|
|
Static member | Description |
Full Usage:
Map.Create(comparer, ie)
Parameters:
'ComparerTag
ie : seq<'Key * 'T>
Returns: Map<'Key, 'T, 'ComparerTag>
|
|
Full Usage:
Map.Empty(comparer)
Parameters:
'ComparerTag
Returns: Map<'Key, 'T, 'ComparerTag>
|
|
Full Usage:
Map.FromList(comparer, l)
Parameters:
'ComparerTag
l : ('Key * 'T) list
Returns: Map<'Key, 'T, 'ComparerTag>
|
|