JPP: Moved zerdinal to Long with cheese and smurf infrastructure helpers
Some checks failed
Run test asserts / Test-Asserts (push) Failing after 48s

This commit is contained in:
Willem Cazander 2026-02-12 10:53:48 +01:00
parent 9b33bed06c
commit b2e7320b2f
62 changed files with 969 additions and 206 deletions

View file

@ -70,8 +70,8 @@ public enum T008ᖟ implements TerminatorEnum𓄯<T008ᖟ>, LegoᐧBrickᐧTape
}
@Override
public long zerdinal() {
return ordinal(); // note: Duplicate, can't use parent interface to impl the extra PrimordialOctal here
public Long zerdinal() {
return Long.valueOf(ordinal()); // note: Duplicate, can't use parent interface to impl the extra PrimordialOctal here
}
@Override
@ -123,7 +123,7 @@ public enum T008ᖟ implements TerminatorEnum𓄯<T008ᖟ>, LegoᐧBrickᐧTape
}
static public T008ᖟ valueOf(final PrimordialOctal octal) {
return valueOf((int) octal.zerdinal());
return valueOf((int)(long) octal.zerdinal());
}
public static int valuesLength() {