úÎt©nÊR      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQportable provisional fox@ucw.cz The abstract type of a HashSet. Its interface is a suitable  subset of Data.IntSet.IntSet. RSTUSame as . VWIs the set empty? Number of elements in the set. $Is the element a member of the set? (Is the element not a member of the set? Is this a subset? 7Is this a proper subset? (ie. a subset but not equal). The empty set. A set of one element. IAdd a value to the set. When the value is already an element of the set, $ it is replaced by the new one, ie.   is left-biased. XY KDelete a value in the set. Returns the original set when the value was not  present. The union of two sets. The union of a list of sets. Difference between two sets. ZThe intersection of two sets. 1Filter all elements that satisfy some predicate. JPartition the set according to some predicate. The first set contains all L elements that satisfy the predicate, the second all elements that fail the  predicate.  f s! is the set obtained by applying f to each element of s. It'Gs worth noting that the size of the result may be smaller if, for some  (x,y), x /= y && f x == f y 9Fold over the elements of a set in an unspecified order. AThe elements of a set. (For sets, this is equivalent to toList). 'Convert the set to a list of elements. &Create a set from a list of elements.    portable provisional fox@ucw.czJThe abstract type of a HashMap. Its interface is a suitable  subset of Data.IntMap.IntMap. [\]^Find the value at a key.  Calls _$ when the element can not be found. Same as 2. `aIs the map empty? Number of elements in the map.  Is the key a member of the map? $Is the key not a member of the map? b&Lookup the value at a key in the map. The expression ( def k map) returns the value at key  k or returns def, when the key is not an element of the map. The empty map. !A map of one element. "Insert a new key/9value pair in the map. If the key is already present in I the map, the associated value is replaced with the supplied value, i.e.  " is equivalent to # c. ##Insert with a combining function. # f key value mp will # insert the pair (key, value) into mp& if key does not exist in the map. If . the key does exist, the function will insert f new_value old_value. $#Insert with a combining function. $ f key value mp will # insert the pair (key, value) into mp& if key does not exist in the map. If . the key does exist, the function will insert f key new_value old_value. %The expression (% f k x map) is a pair where the  first element is equal to ( k map") and the second element equal to  ($ f k x map). de&=Delete a key and its value from the map. When the key is not 4 a member of the map, the original map is returned. 'KAdjust a value at a specific key. When the key is not a member of the map,  the original map is returned. (KAdjust a value at a specific key. When the key is not a member of the map,  the original map is returned. )The expression () f k map) updates the value x at k (if it is  in the map). If (f x) is f#, the element is deleted. If it is  (g y ), the key k is bound to the new value y. *The expression () f k map) updates the value x at k (if it is  in the map). If (f k x) is f#, the element is deleted. If it is  (g y ), the key k is bound to the new value y. +KLookup and update. The function returns original value, if it is updated. ! This is different behavior than Data.Map.updateLookupWithKey. Returns the 1 original key value if the map entry is deleted. ,The expression (, f k map) alters the value x at k , or absence  thereof. ,8 can be used to insert, delete, or update a value in an  . -The union of a list of maps. .9The union of a list of maps, with a combining operation. /%The (left-biased) union of two maps. ? It prefers the first map when duplicate keys are encountered,  i.e. (/ == 0 c). h0%The union with a combining function. 1%The union with a combining function. 2-Difference between two maps (based on keys). i3&Difference with a combining function. 4>Difference with a combining function. When two equal keys are L encountered, the combining function is applied to the key and both values.  If it returns f4, the element is discarded (proper set difference).  If it returns (g y+), the element is updated with a new value y. j5<The (left-biased) intersection of two maps (based on keys). k6,The intersection with a combining function. 7,The intersection with a combining function. 87Is this a proper submap? (ie. a submap but not equal). 9GIs this a proper submap? (ie. a submap but not equal). The expression  (9 f m1 m2 ) returns l when m1 and m2 are not  equal, all keys in m1 are in m2 , and when f returns l when % applied to their respective values. :Is this a submap? ;The expression (; f m1 m2 ) returns l if all keys in  m1 are in m2 , and when f returns l when applied to their  respective values. <+Map a function over all values in the map. =+Map a function over all values in the map. > The function >2 threads an accumulating argument through the map  in unspecified order of keys. ? The function ?* threads an accumulating argument through ' the map in unspecified order of keys. @/Filter all values that satisfy some predicate. AFilter all keys/$values that satisfy some predicate. BJPartition the map according to some predicate. The first map contains all L elements that satisfy the predicate, the second all elements that fail the  predicate. CJPartition the map according to some predicate. The first map contains all L elements that satisfy the predicate, the second all elements that fail the  predicate. DMap values and collect the g results. EMap keys/values and collect the g results. FMap values and separate the m and n results. GMap keys/values and separate the m and n results. opH&Fold the values in the map, such that H f z == q  f z . J. I/Fold the keys and values in the map, such that I f z ==  q (r f) z .  toAscList. JAReturn all elements of the map in arbitrary order of their keys. K/Return all keys of the map in arbitrary order. L The set of all keys of the map. MReturn all key//value pairs in the map in arbitrary key order. N Convert the map to a list of key/ value pairs. OCreate a map from a list of key/ value pairs. PCreate a map from a list of key/'value pairs with a combining function. QBuild a map from a list of key/'value pairs with a combining function. ; !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ; !"#$%&'()*+,/01-.234567<=>?HIJKLMNOPQ@ABCDEFG:;89; !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQs         !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHABCIJKLEMINOFGIPQIPRSTHUVWXIYZIY[\]IN^I_`a hashmap-1.1.0 Data.HashSet Data.HashMapHashSet\\nullsizemember notMember isSubsetOfisProperSubsetOfempty singletoninsertdeleteunionunions difference intersectionfilter partitionmapfoldelemstoListfromListHashMap!lookupfindWithDefault insertWith insertWithKeyinsertLookupWithKeyadjust adjustWithKeyupdate updateWithKeyupdateLookupWithKeyalter unionsWith unionWith unionWithKeydifferenceWithdifferenceWithKeyintersectionWithintersectionWithKeyisProperSubmapOfisProperSubmapOfBy isSubmapOf isSubmapOfBy mapWithKeymapAccummapAccumWithKey filterWithKeypartitionWithKeymapMaybemapMaybeWithKey mapEithermapEitherWithKey foldWithKeykeyskeysSetassocs fromListWithfromListWithKeySomeMoreOnly hashSetTceq some_norm some_norm' delete_emptybaseGHC.Errerror hashMapTc some_lookupGHC.Baseconst Data.MaybeNothingJustsome_union_with_keysome_diff_with_keysome_intersection_with_keyghc-primGHC.BoolTrue Data.EitherLeftRight maybe_left maybe_rightfoldr Data.Tupleuncurry