@FunctionalInterface public static interface BaseNCodec.CustomDivider
It MUST perform SIGNED long division.
Example:
CustomDivider divideBy64 = x -> new long[] { x / 64, x % 64 };
long[] answer = divideBy64(1024);
Copyright © 2024. All rights reserved.