Lines Matching refs:two
32 function divisibleby(one, two) { argument
33 return one % two === 0;
52 function equalto(one, two) { argument
53 return one === two;
91 function ge(one, two) { argument
92 return one >= two;
103 function greaterthan(one, two) { argument
104 return one > two;
118 function le(one, two) { argument
119 return one <= two;
130 function lessthan(one, two) { argument
131 return one < two;
155 function ne(one, two) { argument
156 return one !== two;