MCPcopy Create free account
hub / github.com/JeanLucPons/VanitySearch / GetLowestBit

Method GetLowestBit

Int.cpp:741–748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739// ------------------------------------------------
740
741int Int::GetLowestBit() {
742
743 // Assume this!=0
744 int b=0;
745 while(GetBit(b)==0) b++;
746 return b;
747
748}
749
750// ------------------------------------------------
751

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected