Filter callables by attributes
@("test") void test() { } enum item = describeCallable!test; enum items = [ item ]; items.where.anyOfAttributes(["other"]).length.should.equal(0); items.where.anyOfAttributes(["other", "attributes"]).length.should.equal(0); items.where.anyOfAttributes(["test"]).length.should.equal(1);
Filter callable lists