With Nimble matchers, if I try something like this:
expect([["a"],["b"]]).to(contain([["a"],["b"]]))
I get this error:
Error:(29, 54) cannot convert value of type 'Predicate<NMBContainer>' to expected argument type 'Predicate<[[String]]>'
But this is fine:
expect(["a","b"]).to(contain(["a","b"]))
Why is that?