Jurassic.Compiler.DynamicILGenerator.BranchIfLessThanUnsigned C# (CSharp) Method

BranchIfLessThanUnsigned() public method

Branches to the given label if the first value on the stack is less than the second value on the stack. If the operands are integers then they are treated as if they are unsigned. If the operands are floating point numbers then a NaN value will trigger a branch.
public BranchIfLessThanUnsigned ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void BranchIfLessThanUnsigned(ILLabel label)
        {
            BranchCore(label, 0x44, ComparisonOperator.LessThanUnsigned);
        }
DynamicILGenerator