Skip to content

Commit 599cbf7

Browse files
committed
rustdoc: Use parallel map by default
1 parent 2ce2889 commit 599cbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rustdoc/par.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export anymap, seqmap, parmap;
22

33
fn anymap<T:send, U:send>(v: [T], f: fn~(T) -> U) -> [U] {
4-
seqmap(v, f)
4+
parmap(v, f)
55
}
66

77
fn seqmap<T, U>(v: [T], f: fn(T) -> U) -> [U] {

0 commit comments

Comments
 (0)