MCPcopy Index your code
hub / github.com/clojure/clojure / addConstantFloat

Method addConstantFloat

src/jvm/clojure/asm/SymbolTable.java:639–641  ·  view source on GitHub ↗

Adds a CONSTANT_Float_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value a float. @return a new or already existing Symbol with the given value.

(final float value)

Source from the content-addressed store, hash-verified

637 * @return a new or already existing Symbol with the given value.
638 */
639 Symbol addConstantFloat(final float value) {
640 return addConstantInteger(Symbol.CONSTANT_FLOAT_TAG, Float.floatToRawIntBits(value));
641 }
642
643 /**
644 * Adds a CONSTANT_Integer_info or CONSTANT_Float_info to the constant pool of this symbol table.

Callers 2

addConstantMethod · 0.95
visitMethod · 0.80

Calls 1

addConstantIntegerMethod · 0.95

Tested by

no test coverage detected