-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathgenerate_arrayvec_copy
executable file
·25 lines (23 loc) · 1.02 KB
/
generate_arrayvec_copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
# Generate ArrayVecCopy from ArrayVec
# Replace type name with ArrayVecCopy
# Insert `T: Copy` bound as needed.
#
# Replace `// DIRECTIVE ArrayVecCopy` with empty string anywhere to allow
# items to be cfg'ed out for arrayvec copy
sed \
-e "s/\\<ArrayVec\\>/ArrayVecCopy/g" \
-e "s/\\<arrayvec::ArrayVecCopy\\>/arrayvec::copy::ArrayVecCopy/g" \
-e "s/impl<\\('[A-Za-z_]*, \\)\\?T:/impl<\\1T: Copy +/g" \
-e "s/impl<\\('[A-Za-z_]*, \\)\\?T,/impl<\\1T: Copy,/g" \
-e "s/struct \\([A-Za-z_]*\\)<\\('[A-Za-z_]*, \\)\\?T:/struct \\1<\\2T: Copy +/g" \
-e "s/struct \\([A-Za-z_]*\\)<\\('[A-Za-z_]*, \\)\\?T,/struct \\1<\\2T: Copy,/g" \
-e "s/fn \\([A-Za-z_]*\\)<\\('[A-Za-z_]*, \\)\\?T:/fn \\1<\\2T: Copy +/g" \
-e "s/fn \\([A-Za-z_]*\\)<\\('[A-Za-z_]*, \\)\\?T,/fn \\1<\\2T: Copy,/g" \
-e "s/const fn/fn/" \
-e "s/\\/\\/ DIRECTIVE ArrayVecCopy \\+//" \
src/arrayvec.rs \
> src/arrayvec_copy.rs