public float toFloat()

in modules/core/src/main/java/org/apache/fluo/recipes/core/types/TypedSnapshotBase.java [169:174]


    public float toFloat(float defaultValue) {
      if (getBytes() == null) {
        return defaultValue;
      }
      return encoder.decodeFloat(getBytes());
    }