forked from auduchinok/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashMultiMap.fsi
More file actions
65 lines (45 loc) · 2.72 KB
/
Copy pathHashMultiMap.fsi
File metadata and controls
65 lines (45 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.
namespace Internal.Utilities.Collections
open System
open System.Collections.Generic
/// Hash tables, by default based on F# structural "hash" and (=) functions.
/// The table may map a single key to multiple bindings.
[<Sealed>]
type internal HashMultiMap<'Key,'Value> =
/// Create a new empty mutable HashMultiMap with the given key hash/equality functions.
new : comparer:IEqualityComparer<'Key> -> HashMultiMap<'Key,'Value>
/// Create a new empty mutable HashMultiMap with an internal bucket array of the given approximate size
/// and with the given key hash/equality functions.
new : size:int * comparer:IEqualityComparer<'Key> -> HashMultiMap<'Key,'Value>
/// Build a map that contains the bindings of the given IEnumerable.
new : entries:seq<'Key * 'Value> * comparer:IEqualityComparer<'Key> -> HashMultiMap<'Key,'Value>
/// Make a shallow copy of the collection.
member Copy : unit -> HashMultiMap<'Key,'Value>
/// Add a binding for the element to the table.
member Add : 'Key * 'Value -> unit
/// Clear all elements from the collection.
member Clear : unit -> unit
/// Test if the collection contains any bindings for the given element.
member ContainsKey: 'Key -> bool
/// Remove the latest binding if any for the given element from the table.
member Remove : 'Key -> unit
/// Replace the latest binding if any for the given element.
member Replace : 'Key * 'Value -> unit
/// Lookup or set the given element in the table. Set replaces all existing bindings for a value with a single
/// bindings. Raise <c>KeyNotFoundException</c> if the element is not found.
member Item : 'Key -> 'Value with get,set
/// Lookup the given element in the table, returning the result as an Option.
member TryFind : 'Key -> 'Value option
/// Find all bindings for the given element in the table, if any.
member FindAll : 'Key -> 'Value list
/// Apply the given function to each element in the collection threading the accumulating parameter
/// through the sequence of function applications.
member Fold : ('Key -> 'Value -> 'State -> 'State) -> 'State -> 'State
/// The total number of keys in the hash table.
member Count : int
/// Apply the given function to each binding in the hash table.
member Iterate : ('Key -> 'Value -> unit) -> unit
interface IDictionary<'Key, 'Value>
interface ICollection<KeyValuePair<'Key, 'Value>>
interface IEnumerable<KeyValuePair<'Key, 'Value>>
interface System.Collections.IEnumerable