MCPcopy Index your code
hub / github.com/apache/tomcat / isBigIntegerOp

Method isBigIntegerOp

java/org/apache/el/lang/ELSupport.java:705–707  ·  view source on GitHub ↗

Checks if either operand is a BigInteger. @param obj0 the first operand @param obj1 the second operand @return true if either operand is a BigInteger

(final Object obj0, final Object obj1)

Source from the content-addressed store, hash-verified

703 * @return true if either operand is a BigInteger
704 */
705 public static boolean isBigIntegerOp(final Object obj0, final Object obj1) {
706 return (obj0 instanceof BigInteger || obj1 instanceof BigInteger);
707 }
708
709 /**
710 * Checks if either operand is a Double or Float.

Callers 2

compareMethod · 0.95
equalsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected