Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LPC4/Full-Stack
/ sub
Function
sub
crates/virtual-machine/src/cpu/alu.rs:60–62 ·
view source on GitHub ↗
(a: u64, b: u64)
Source
from the content-addressed store, hash-verified
58
}
59
#[inline]
60
pub fn sub(a: u64, b: u64) -> u64 {
61
a.wrapping_sub(b)
62
}
63
#[inline]
64
pub fn sll(a: u64, b: u64) -> u64 {
65
a << (b & 63)
Callers
1
exec_alu
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected