aljabar/node_modules/algebrite/sources/mpow.coffee

12 lines
108 B
CoffeeScript

# Bignum power
# a is a bigint, n is a small normal int
mpow = (a,n) ->
return a.pow n
#if SELFTEST