f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/java/io/protobase/f7/utils/NumberUtils.java
-rw-r--r--
150
1package io.protobase.f7.utils;
2
3public class NumberUtils {
4  public static boolean isZero(double value) {
5    return value == 0 || value == -0;
6  }
7}