svoid test_andCombineRegexps() { S re = print(andCombineRegexps("cat", "dog")); testFunctionValues(curry regexpFind(re), "a dog" := false, "a cat" := false, "a dog and a cat" := true, "cat and dog are in the house" := true); }