Difference between revisions of "Template:BinaryOps"

From Cheat Engine
Jump to navigation Jump to search
(Initial Template Creation)
 
m (Major overhaul of the template.)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=== Related Functions ===
+
<div style="display:flex; flex-wrap:wrap; gap:0.85em; margin:0.9em 0; font-family:monospace; align-items:flex-start; max-width:760px;">
{| class="wikitable" style="border:1px solid #4A90E2; background:#E8F2FF; font-family:monospace; width:320px;"
+
 
|-
+
<div style="flex:1 1 320px; min-width:280px; max-width:420px; border:1px solid #D9E8FA; border-radius:7px; background:#FFFFFF; overflow:hidden; box-shadow:0 2px 6px rgba(30,64,175,0.09);">
| [[Lua:bOr|bOr]] – Bitwise OR
+
<div style="background:linear-gradient(90deg,#E8F2FF,#F7FBFF); color:#1F4E79; font-weight:bold; padding:0.5em 0.7em; border-bottom:1px solid #D9E8FA;">
|-
+
Bitwise Related Lua Functions
| [[Lua:bXor|bXor]] – Bitwise XOR
+
</div>
|-
+
<div style="padding:0.6em 0.8em; line-height:1.75; background:#FBFDFF;">
| [[Lua:bAnd|bAnd]] – Bitwise AND
+
<span style="color:#4A90E2;">◆</span> [[Lua:bOr|bOr]] <span style="color:#5F6F82;">– Bitwise OR</span><br>
|-
+
<span style="color:#4A90E2;">◆</span> [[Lua:bXor|bXor]] <span style="color:#5F6F82;">– Bitwise XOR</span><br>
| [[Lua:bShl|bShl]] – Bitwise Shift Left
+
<span style="color:#4A90E2;">◆</span> [[Lua:bAnd|bAnd]] <span style="color:#5F6F82;">– Bitwise AND</span><br>
|-
+
<span style="color:#4A90E2;">◆</span> [[Lua:bShl|bShl]] <span style="color:#5F6F82;">– Bitwise Shift Left</span><br>
| [[Lua:bShr|bShr]] – Bitwise Shift Right
+
<span style="color:#4A90E2;">◆</span> [[Lua:bShr|bShr]] <span style="color:#5F6F82;">– Bitwise Shift Right</span><br>
|-
+
<span style="color:#4A90E2;">◆</span> [[Lua:bNot|bNot]] <span style="color:#5F6F82;">– Bitwise NOT</span>
| [[Lua:bNot|bNot]] – Bitwise NOT
+
</div>
|}
+
</div>
 +
 
 +
</div>

Latest revision as of 00:14, 27 June 2026

Bitwise Related Lua Functions

bOr – Bitwise OR
bXor – Bitwise XOR
bAnd – Bitwise AND
bShl – Bitwise Shift Left
bShr – Bitwise Shift Right
bNot – Bitwise NOT