MCPcopy Create free account
hub / github.com/apache/tomcat / isBigDecimalOp

Method isBigDecimalOp

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

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

(final Object obj0, final Object obj1)

Source from the content-addressed store, hash-verified

691 * @return true if either operand is a BigDecimal
692 */
693 public static boolean isBigDecimalOp(final Object obj0, final Object obj1) {
694 return (obj0 instanceof BigDecimal || obj1 instanceof BigDecimal);
695 }
696
697 /**
698 * Checks if either operand is a BigInteger.

Callers 2

compareMethod · 0.95
equalsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected