Versions in this module Expand all Collapse all v0 v0.0.1 Apr 12, 2017 v0.0.0 Apr 12, 2017 Changes in this version + type List interface + Get func(int) interface{} + Len func() int + type Pair struct + L interface{} + R interface{} + func HashJoin(lSlice, rSlice List, lKey, rKey func(interface{}) interface{}) (pairs []Pair, lonelyLefts, lonelyRights []interface{}) + func Join(lSlice, rSlice interface{}, score func(left, right interface{}) int) (pairs []Pair, lonelyLefts, lonelyRights []interface{}) + type StringSlice []string + func (ss StringSlice) Get(ii int) interface{} + func (ss StringSlice) Len() int