MCPcopy Create free account
hub / github.com/albertobsd/keyhunt / GetLowestBit

Method GetLowestBit

secp256k1/Int.cpp:705–712  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

703// ------------------------------------------------
704
705int Int::GetLowestBit() {
706
707 // Assume this!=0
708 int b=0;
709 while(GetBit(b)==0) b++;
710 return b;
711
712}
713
714// ------------------------------------------------
715

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected