1
0
şunun yansıması https://github.com/DanilaFe/abacus eşitlendi 2026-01-17 12:25:20 +00:00

Add a class that keeps track of the implementation information.

Bu işleme şunda yer alıyor:
2017-08-03 20:50:53 -07:00
ebeveyn 542f062b5e
işleme 3f2c4ae249

Dosyayı Görüntüle

@@ -0,0 +1,17 @@
package org.nwapw.abacus.plugin;
import org.nwapw.abacus.number.NumberInterface;
import java.util.Map;
import java.util.function.Function;
public abstract class NumberImplementation {
private Class<? extends NumberInterface> implementation;
private Map<String, Function<NumberInterface, NumberInterface>> promotionPaths;
private int priority;
public abstract NumberInterface instanceForString(String string);
public abstract NumberInterface instanceForPi();
}