19 function.type = void_function_type;
20 function.mode = ID_java;
21 function.value = code;
26 const std::multimap<irep_idt, irep_idt> &map,
28 const std::set<irep_idt> &values)
30 auto matching_values = map.equal_range(key);
31 std::set<irep_idt> matching_set;
32 for(
auto it = matching_values.first; it != matching_values.second; ++it)
33 matching_set.insert(it->second);
34 return matching_set == values;