MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / _LisNeg

Function _LisNeg

vm/ByteCodeTranslator/src/javascript/parparvm_runtime.js:3731–3731  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

3729function _LtoNum(x) { return (x && x.__l === 1) ? _LtoNumber(x) : Number(x); } // Long|Number -> Number
3730function _LisZero(a) { return a.h === 0 && a.l === 0; }
3731function _LisNeg(a) { return a.h < 0; }
3732function _Leq(a, b) { return a.h === b.h && a.l === b.l; }
3733function _Ladd(a, b) {
3734 a = _Lc(a); b = _Lc(b);

Callers 2

_LdivFunction · 0.85
_LtoStrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected