add type signature type

This commit is contained in:
2025-10-16 22:17:41 +02:00
parent 9dcb466d84
commit dd6ecb5c9b

View File

@@ -158,7 +158,7 @@
};
let is_subset(subset, of, matcher) = {
for item in subset {
if not has_value(item, of, matcher) {
if not has_value(item, of, matcher) and not has_value("any", of, matcher) {
return false;
}
}