conversions.negative_binary_base_to_int ======================================= .. py:module:: conversions.negative_binary_base_to_int Functions --------- .. autoapisummary:: conversions.negative_binary_base_to_int.negative_binary_to_int Module Contents --------------- .. py:function:: negative_binary_to_int(negative_binary: int) -> int a conversion algorithm from negative binary base to decimal https://en.wikipedia.org/wiki/Negative_base#:~:text=Binary-,Negabinary,-Ternary >>> negative_binary_to_int(101110) -38 >>> negative_binary_to_int(10111110) -150 >>> negative_binary_to_int(100) 4 >>> negative_binary_to_int(110) 2