Difference between revisions of "Template:BinaryOps"

From Cheat Engine
Jump to navigation Jump to search
(Major overhaul of the template.)
m (Major overhaul of the template.)
 
Line 1: Line 1:
<div style="width:360px; border:1px solid #4A90E2; background:#F7FBFF; margin:0.8em 0; font-family:monospace;">
+
<div style="display:flex; flex-wrap:wrap; gap:0.85em; margin:0.9em 0; font-family:monospace; align-items:flex-start; max-width:760px;">
<div style="background:#E8F2FF; color:#1F4E79; font-weight:bold; padding:0.45em 0.65em; border-bottom:1px solid #4A90E2;">
+
 
 +
<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);">
 +
<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
 
Bitwise Related Lua Functions
 
</div>
 
</div>
<div style="padding:0.55em 0.75em; line-height:1.7;">
+
<div style="padding:0.6em 0.8em; line-height:1.75; background:#FBFDFF;">
[[Lua:bOr|bOr]] <span style="color:#555555;">– Bitwise OR</span><br>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bOr|bOr]] <span style="color:#5F6F82;">– Bitwise OR</span><br>
[[Lua:bXor|bXor]] <span style="color:#555555;">– Bitwise XOR</span><br>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bXor|bXor]] <span style="color:#5F6F82;">– Bitwise XOR</span><br>
[[Lua:bAnd|bAnd]] <span style="color:#555555;">– Bitwise AND</span><br>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bAnd|bAnd]] <span style="color:#5F6F82;">– Bitwise AND</span><br>
[[Lua:bShl|bShl]] <span style="color:#555555;">– Bitwise Shift Left</span><br>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bShl|bShl]] <span style="color:#5F6F82;">– Bitwise Shift Left</span><br>
[[Lua:bShr|bShr]] <span style="color:#555555;">– Bitwise Shift Right</span><br>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bShr|bShr]] <span style="color:#5F6F82;">– Bitwise Shift Right</span><br>
[[Lua:bNot|bNot]] <span style="color:#555555;">– Bitwise NOT</span>
+
<span style="color:#4A90E2;">◆</span> [[Lua:bNot|bNot]] <span style="color:#5F6F82;">– Bitwise NOT</span>
 
</div>
 
</div>
 +
</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