Add select operation (#10798)

This commit is contained in:
Redstonneur1256
2025-07-02 20:02:51 +02:00
committed by GitHub
parent adcbcec706
commit b3050c299d
5 changed files with 106 additions and 38 deletions

View File

@@ -101,6 +101,12 @@ public class LVar{
isobj = true;
}
public void set(LVar other){
isobj = other.isobj;
objval = other.objval;
numval = other.numval;
}
public static boolean invalid(double d){
return Double.isNaN(d) || Double.isInfinite(d);
}