log2 function

double log2(
  1. double x
)

Implementation

double log2(double x) => math.log(x) / math.ln2;