bit/memory.fjΒΆ
βββ- Memory Variables
MacrosΒΆ
bitΒΆ
bit.bit/1β Size Complexity: 1bit.vec/2β Size Complexity: nbit.zero/1β bit = 0bit.zero/2β x[:n] = 0bit.one/1β bit = 1bit.one/2β x[:n] = (1<<n) - 1 // all 1βsbit.unsafe_movβ note: doesnβt work if dst==src.bit.mov/2β note: works if dst==src.bit.mov/3β note: doesnβt work if dst and src overlap. works if dst==src.bit.swap/2β Space: 3@+8bit.swap/3β Space: n(3@+8)