Handbook
Glossary
^n ( z w -- z^w )
Vocabulary
math
.
functions
.
private
Inputs
z
an
object
w
an
object
Outputs
z^w
an
object
Definition
IN:
math.functions.private
GENERIC#:
^n
1
( z w -- z^w )
foldable
flushable
Methods
USING:
kernel
math
math.functions
math.functions.private
;
M:
bignum
^n
[
factor-2s
]
dip
[
(^n)
]
keep
rot
*
shift
;
USING:
math
math.functions.private
;
M:
complex
^n
(^n)
;
USING:
math
math.functions.private
;
M:
fixnum
^n
(^n)
;
USING:
math
math.functions.private
math.libm
;
M:
float
^n
[
>float
fpow
]
unless-zero
;
USING:
kernel
math
math.functions.private
;
M:
ratio
^n
[
>fraction
]
dip
[
^n
]
curry
bi@
/
;