MCPcopy Create free account
hub / github.com/Aghajari/MathParser / isMathSign

Method isMathSign

MathParser/src/com/aghajari/math/MathParser.java:814–819  ·  view source on GitHub ↗

@return True if src exists on supported operations, False otherwise

(String src)

Source from the content-addressed store, hash-verified

812 * @return True if src exists on supported operations, False otherwise
813 */
814 static boolean isMathSign(String src) {
815 src = src.trim();
816 if (src.isEmpty())
817 return false;
818 return isMathSign(src.charAt(0));
819 }
820
821 /**
822 * @return True if src exists on supported operations, False otherwise

Callers 1

parseMethod · 0.80

Calls 1

trimMethod · 0.80

Tested by

no test coverage detected