potion_sig_arity 23 core/objmodel.c c->arity = potion_sig_arity(P, sig); potion_sig_arity 837 core/potion.h int potion_sig_arity(Potion *, PN); potion_sig_arity 242 core/table.c int with_index = potion_sig_arity(P, PN_CLOSURE(block)->sig) >= 2; potion_sig_arity 232 core/vm.c f2->arity = potion_sig_arity(P, f2->sig); potion_sig_arity 553 core/vm.c for (argx = 0; argx < potion_sig_arity(P, f->sig); argx++) { potion_sig_arity 95 test/api/potion-test.c CuAssertIntEquals(T, "arity=2", 2, potion_sig_arity(P, sig)); potion_sig_arity 112 test/api/potion-test.c CuAssertIntEquals(T, "arity=2", 2, potion_sig_arity(P, sig)); potion_sig_arity 120 test/api/potion-test.c CuAssertIntEquals(T, "arity=3", 3, potion_sig_arity(P, sig)); potion_sig_arity 136 test/api/potion-test.c CuAssertIntEquals(T, "arity nil", 0, potion_sig_arity(P, PN_NIL)); potion_sig_arity 139 test/api/potion-test.c CuAssertIntEquals(T, "arity x:=1", 1, potion_sig_arity(P, potion_sig(P, "x:=1"))); 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|y:=1", 2, potion_sig_arity(P, potion_sig(P, "x|y:=1"))); potion_sig_arity 149 test/api/potion-test.c CuAssertIntEquals(T, "arity f1", 2, potion_sig_arity(P, f1->sig)); potion_sig_arity 154 test/api/potion-test.c CuAssertIntEquals(T, "sig arity f2", 2, potion_sig_arity(P, f2->sig));