org.luaj.vm2.lib.MathLib.dpow() - java examples

Here are the examples of the java api org.luaj.vm2.lib.MathLib.dpow() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

8 Examples 7

19 View Complete Implementation : LuaDouble.java
Copyright MIT License
Author : alibaba
public LuaValue pow(int rhs) {
    return MathLib.dpow(v, rhs);
}

19 View Complete Implementation : LuaDouble.java
Copyright MIT License
Author : alibaba
public LuaValue powWith(int lhs) {
    return MathLib.dpow(lhs, v);
}

19 View Complete Implementation : LuaDouble.java
Copyright MIT License
Author : alibaba
public LuaValue powWith(double lhs) {
    return MathLib.dpow(lhs, v);
}

19 View Complete Implementation : LuaDouble.java
Copyright MIT License
Author : alibaba
public LuaValue pow(double rhs) {
    return MathLib.dpow(v, rhs);
}

19 View Complete Implementation : LuaString.java
Copyright MIT License
Author : alibaba
public LuaValue pow(int rhs) {
    return MathLib.dpow(checkarith(), rhs);
}

19 View Complete Implementation : LuaString.java
Copyright MIT License
Author : alibaba
public LuaValue powWith(int lhs) {
    return MathLib.dpow(lhs, checkarith());
}

19 View Complete Implementation : LuaString.java
Copyright MIT License
Author : alibaba
public LuaValue powWith(double lhs) {
    return MathLib.dpow(lhs, checkarith());
}

19 View Complete Implementation : LuaString.java
Copyright MIT License
Author : alibaba
public LuaValue pow(double rhs) {
    return MathLib.dpow(checkarith(), rhs);
}