@return True if src exists on supported operations, False otherwise
(String src)
| 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 |