potion_sig_arity  674 core/compile.c 	  arity = cl->arity = potion_sig_arity(P, sig);
potion_sig_arity   23 core/objmodel.c     c->arity = potion_sig_arity(P, sig);
potion_sig_arity  865 core/potion.h  int potion_sig_arity(Potion *, PN);
potion_sig_arity  385 core/table.c     int with_index = potion_sig_arity(P, PN_CLOSURE(block)->sig) >= 2;
potion_sig_arity  242 core/vm.c            f2->arity = potion_sig_arity(P, f2->sig);
potion_sig_arity  648 core/vm.c            for (argx = 0; argx < potion_sig_arity(P, f->sig); argx++) {
potion_sig_arity   96 test/api/potion-test.c   CuAssertIntEquals(T, "arity=2", 2, potion_sig_arity(P, sig));
potion_sig_arity  113 test/api/potion-test.c   CuAssertIntEquals(T, "arity=2", 2, potion_sig_arity(P, sig));
potion_sig_arity  121 test/api/potion-test.c   CuAssertIntEquals(T, "arity=3", 3, potion_sig_arity(P, sig));
potion_sig_arity  137 test/api/potion-test.c   CuAssertIntEquals(T, "arity nil", 0, potion_sig_arity(P, PN_NIL));
potion_sig_arity  140 test/api/potion-test.c   CuAssertIntEquals(T, "arity x:=1", 1, potion_sig_arity(P, potion_sig(P, "x:=1")));
potion_sig_arity  141 test/api/potion-test.c   CuAssertIntEquals(T, "arity |x:=1", 1, potion_sig_arity(P, potion_sig(P, "|x:=1")));
potion_sig_arity  142 test/api/potion-test.c   CuAssertIntEquals(T, "arity x|y:=1", 2, potion_sig_arity(P, potion_sig(P, "x|y:=1")));
potion_sig_arity  150 test/api/potion-test.c   CuAssertIntEquals(T, "arity f1", 2, potion_sig_arity(P, f1->sig));
potion_sig_arity  155 test/api/potion-test.c   CuAssertIntEquals(T, "sig arity f2", 2, potion_sig_arity(P, f2->sig));