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