From d034179fde42c4fc633b98fef6e84c2e0d1c2834 Mon Sep 17 00:00:00 2001 From: Adrien Hopkins Date: Mon, 4 Sep 2023 19:53:20 -0500 Subject: Add ability to show full digit maps Full digit maps will show every digit from 0 to 35, regardless of the radix. This allows you to see extra fractions for small radices and to get a digit map for radices above 36. This isn't enabled by default because the extra "digits" added for small radices aren't actually digits - so it may be unintuitive. There are also some situations where only a radix's actual digits matter, such as multiplication tables. --- radix_info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'radix_info.go') diff --git a/radix_info.go b/radix_info.go index fb1caef..0500a33 100644 --- a/radix_info.go +++ b/radix_info.go @@ -12,7 +12,7 @@ func main() { } if err == nil { - factorInfo := GetFactorInfo(args.Radix) + factorInfo := GetFactorInfo(args.Radix, args.FullMap) if args.Compact { factorInfo.WriteToCompact(os.Stdout) } else { -- cgit v1.2.3