MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / set

Method set

codegraph-kernel/src/buffers.rs:188–193  ·  view source on GitHub ↗
(&mut self, pair: u16, value: bool)

Source from the content-addressed store, hash-verified

186
187impl BoolFlags {
188 pub fn set(&mut self, pair: u16, value: bool) {
189 self.0 |= 1 << (pair * 2);
190 if value {
191 self.0 |= 1 << (pair * 2 + 1);
192 }
193 }
194}
195
196pub const FLAG_IS_EXPORTED: u16 = 0;

Callers 15

extractFunction · 0.45
create_nodeMethod · 0.45
extractFunction · 0.45
create_nodeMethod · 0.45
extractFunction · 0.45
create_nodeMethod · 0.45
extractFunction · 0.45
create_nodeMethod · 0.45
extractFunction · 0.45
create_nodeMethod · 0.45
extractFunction · 0.45
create_nodeMethod · 0.45

Calls

no outgoing calls

Tested by 3

makeContextFunction · 0.36
makeContextFunction · 0.36
tGraphFunction · 0.36