summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
authorJoe Westcott <joewestcott@users.noreply.github.com>2019-08-30 14:31:30 +0100
committerJoe Westcott <joewestcott@users.noreply.github.com>2019-08-30 14:31:30 +0100
commite27b17d1defd471e6f0c0c422d2fa8ce9b9c3bb6 (patch)
tree45373249c91007edfad382b3f3f7eaf6be2a4f55 /fpdf.go
parentced1e15bca902f15732b6380aaa4bdc419d87eac (diff)
comments for ImageInfoType
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdf.go b/fpdf.go
index f77717f..24e79bc 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -4215,6 +4215,7 @@ func implode(sep string, arr []int) string {
return s.String()
}
+// arrayCountValues counts the occurrences of each item in the $mp array.
func arrayCountValues(mp []int) map[int]int {
answer := make(map[int]int)
for _, v := range mp {