Java Code Examples for org.luaj.vm2.lib.MathLib#dpow()

The following examples show how to use org.luaj.vm2.lib.MathLib#dpow() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LuaString.java    From VideoOS-Android-SDK with GNU General Public License v3.0 4 votes vote down vote up
public LuaValue powWith(double lhs) {
    return MathLib.dpow(lhs, checkarith());
}
 
Example 2
Source File: LuaDouble.java    From VideoOS-Android-SDK with GNU General Public License v3.0 4 votes vote down vote up
public LuaValue pow(int rhs) {
    return MathLib.dpow(v, rhs);
}
 
Example 3
Source File: LuaString.java    From VideoOS-Android-SDK with GNU General Public License v3.0 4 votes vote down vote up
public LuaValue pow(double rhs) {
    return MathLib.dpow(checkarith(), rhs);
}
 
Example 4
Source File: LuaDouble.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   pow( double rhs )        { return MathLib.dpow(v,rhs); } 
Example 5
Source File: LuaDouble.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   powWith( int lhs )      { return MathLib.dpow(lhs,v); } 
Example 6
Source File: LuaInteger.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   pow( int rhs )        { return MathLib.dpow(v,rhs); } 
Example 7
Source File: LuaDouble.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   pow( int rhs )        { return MathLib.dpow(v,rhs); } 
Example 8
Source File: LuaDouble.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   pow( double rhs )        { return MathLib.dpow(v,rhs); } 
Example 9
Source File: LuaString.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   powWith( int lhs )       { return MathLib.dpow(lhs, checkarith()); } 
Example 10
Source File: LuaString.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   powWith( double lhs )    { return MathLib.dpow(lhs, checkarith()); } 
Example 11
Source File: LuaInteger.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   pow( int rhs )        { return MathLib.dpow(v,rhs); } 
Example 12
Source File: LuaDouble.java    From luaj with MIT License votes vote down vote up
public LuaValue   pow( int rhs )        { return MathLib.dpow(v,rhs); } 
Example 13
Source File: LuaInteger.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   pow( double rhs )        { return MathLib.dpow(v,rhs); } 
Example 14
Source File: LuaInteger.java    From VideoOS-Android-SDK with GNU General Public License v3.0 votes vote down vote up
public LuaValue pow(int rhs )        { return MathLib.dpow(v,rhs); } 
Example 15
Source File: LuaString.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   pow( double rhs )        { return MathLib.dpow(checkarith(),rhs); } 
Example 16
Source File: LuaInteger.java    From luaj with MIT License votes vote down vote up
public LuaValue   powWith( int lhs )      { return MathLib.dpow(lhs,v); } 
Example 17
Source File: LuaInteger.java    From XPrivacyLua with GNU General Public License v3.0 votes vote down vote up
public LuaValue   powWith( int lhs )      { return MathLib.dpow(lhs,v); } 
Example 18
Source File: LuaDouble.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   powWith( int lhs )      { return MathLib.dpow(lhs,v); } 
Example 19
Source File: LuaString.java    From HtmlNative with Apache License 2.0 votes vote down vote up
public LuaValue   powWith( int lhs )       { return MathLib.dpow(lhs, checkarith()); } 
Example 20
Source File: LuaString.java    From luaj with MIT License votes vote down vote up
public LuaValue   pow( double rhs )        { return MathLib.dpow(checkarith(),rhs); }