log2 function

num log2(
  1. num x
)

Implementation

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