diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-03 21:42:13 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-03 21:42:13 +0000 |
commit | c137d4ca681d8f68654a5273e760fa21af08b21b (patch) | |
tree | 1ccf245adb3941ef3ad7c08c2cf63a53addf0ebd /reader/reader.go | |
parent | 29ba5464c10d681b39f8e65b07f533d8f43f1b45 (diff) |
added alphaStream
Diffstat (limited to '')
-rw-r--r-- | reader/reader.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/reader/reader.go b/reader/reader.go index d8ab23c..b5d088b 100644 --- a/reader/reader.go +++ b/reader/reader.go @@ -84,6 +84,8 @@ func alphaSingle() []string { return letters } +var alphaStream = alphas(10) + //alphas generates the alpha column compont of Excel cell references //Combines n alphabets to do this. func alphas(n int) []string { |