static int jfind_reversed(L tok, S in) { ret rjfind(tok, in); } static int jfind_reversed(L tok, int startIdx, S in) { ret rjfind(tok, startIdx, in); } static int jfind_reversed(L tok, int startIdx, int endIndex, S in) { ret rjfind(tok, startIdx, endIndex, in); } static int jfind_reversed(L tok, S in, O condition) { ret rjfind(tok, in, condition); } static int jfind_reversed(L tok, int startIdx, S in, O condition) { ret rjfind(tok, startIdx, in, condition); } static int jfind_reversed(L tok, int startIdx, int endIndex, S in, O condition) { ret rjfind(tok, startIdx, endIndex, in, condition); } // assumes you preprocessed tokin static int jfind_reversed(L tok, L tokin) { ret rjfind(tok, tokin); } static int jfind_reversed(L tok, int startIdx, L tokin) { ret rjfind(tok, startIdx, tokin); } static int jfind_reversed(L tok, int startIdx, L tokin, O condition) { ret rjfind(tok, startIdx, tokin, condition); } static int jfind_reversed(L tok, int startIdx, int endIndex, L tokin, O condition) { ret rjfind(tok, startIdx, endIndex, tokin, condition); }