log2 function

double log2(
  1. num x
)

Implementation

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