@return all entries (key-value mappings) in this fact.
()
| 118 | * @return all entries (key-value mappings) in this fact. |
| 119 | */ |
| 120 | public Stream<Map.Entry<K, V>> entries() { |
| 121 | return map.entrySet().stream(); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Performs the given action for each entry(key-value mapping) in this fact |
no test coverage detected