Hyperlinkv0.8.0-beta.28

effect

TxHashMap37

Constructors

Models

Guards

Combinators

clearconstRemoves all entries from the TxHashMap.compactconstRemoves all None values from a TxHashMap containing Option values.entriesconstReturns an array of all key-value pairs in the TxHashMap.everyconstChecks whether all entries in the TxHashMap satisfy the given predicate.filterconstFilters the TxHashMap to keep only entries that satisfy the provided predicate.filterMapconstCombines filtering and mapping in a single operation.findFirstconstFinds the first entry in the TxHashMap that matches the given predicate.flatMapconstMaps each entry effectfully to a TxHashMap and flattens the produced maps.forEachconstExecutes a side-effect function for each entry in the TxHashMap.getconstLooks up the value for the specified key in the TxHashMap.getHashconstLooks up the value for the specified key using a caller-supplied hash.hasconstChecks whether the specified key exists in the TxHashMap.hasByconstChecks whether any entry in the TxHashMap matches the given predicate.hasHashconstChecks whether the specified key has an entry using a caller-supplied hash.isEmptyconstChecks whether the TxHashMap is empty.isNonEmptyconstChecks whether the TxHashMap is non-empty.keysconstReturns an array of all keys in the TxHashMap.mapconstTransforms all values in the TxHashMap using the provided function, preserving keys.modifyconstUpdates the value for the specified key if it exists, returning the previous value in Some; returns None and leaves the map unchanged when the key is absent.modifyAtconstUpdates the value for the specified key using an Option-based update function.reduceconstReduces the TxHashMap entries to a single value by applying a reducer function.removeconstRemoves the specified key from the TxHashMap.removeManyconstRemoves multiple keys from the TxHashMap.setconstSets the value for the specified key in the TxHashMap.setManyconstSets multiple key-value pairs in the TxHashMap.sizeconstReturns the number of entries in the TxHashMap.snapshotconstReturns an immutable snapshot of the current TxHashMap state.someconstChecks whether at least one entry in the TxHashMap satisfies the given predicate.toEntriesconstReturns an array of all key-value pairs in the TxHashMap.toValuesconstReturns an array of all values in the TxHashMap.unionconstMerges another HashMap into this TxHashMap.valuesconstReturns an array of all values in the TxHashMap.