445446447448449450451452453454455
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.stack.size()); try { this.stack.forEach(new CheckedFloatProcedure() { @Override public void safeValue(float item) throws IOException { out.writeFloat(item);
5152535455565758596061
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.set.size()); try { this.set.forEach(new CheckedFloatProcedure() { @Override public void safeValue(float item) throws Exception { out.writeFloat(item);