Skip to content

Commit 3fc09ea

Browse files
committed
Merge pull request bbatsov#112 from rauhs/patch-1
More variable naming conventions
2 parents 4873c39 + 66bbef9 commit 3fc09ea

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,12 +1226,16 @@ hints for the pairwise grouping with comments or empty lines.
12261226
* in functions:
12271227
* `f`, `g`, `h` - function input
12281228
* `n` - integer input usually a size
1229-
* `index` - integer index
1229+
* `index`, `i` - integer index
12301230
* `x`, `y` - numbers
1231+
* `xs` - sequence
1232+
* `m` - map
12311233
* `s` - string input
1234+
* `re` - regular expression
12321235
* `coll` - a collection
12331236
* `pred` - a predicate closure
12341237
* `& more` - variadic input
1238+
* `xf` - xform, a transducer
12351239
* in macros:
12361240
* `expr` - an expression
12371241
* `body` - a macro body

0 commit comments

Comments
 (0)