ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
Module: | Prelude |
---|---|
Operator: | (**) |
Type: | Floating a => a -> a -> a |
Class: | Floating |
Priority: | 8 |
Description: | the power, returns the value of raising the first argument by the second one |
Related: | (^), (^^), exp, log, logBase |
Keywords: | power |
MATHWORLD | Power |
Input: 2 ** 16
Output: 65536.0
Input: 10**3
Output: 1000.0