Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e3abef8

Browse files
author
Ryan Neufeld
committed
Merge pull request clojure-cookbook#482 from dz-cies/patch2
Fix a macro name in 8.06
2 parents 920f1e2 + 373e76e commit e3abef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

08_deployment-and-distribution/8-06_primitive-arrays.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ using +asum+, primarily because +map+ produces sequences of
106106
an intermediate sequence, all arithmetic operations on boxed numbers
107107
are significantly slower than on their primitive counterparts.
108108

109-
++hiphip++'s +amap+, +afill!+, +reduce+, and +asum+ macros (among others)
109+
++hiphip++'s +amap+, +afill!+, +areduce+, and +asum+ macros (among others)
110110
are available for +int+, +long+, +float+, and +double+ types. If you
111111
wanted to use +reduce+ over an array of floats, for example, you would
112-
use +hiphip.float/reduce+. These macros define the appropriate
112+
use +hiphip.float/areduce+. These macros define the appropriate
113113
type hints and optimizations per type.
114114

115115
Clojure also comes with

0 commit comments

Comments
 (0)