R=r
APPROVED=r
DELTA=3 (1 added, 0 deleted, 2 changed)
OCL=27624
CL=27626
return nil
}
-// An injector function takes two arguments, an accumulated value and an
-// element, and returns the next accumulated value. See the Inject function.
+// Injector is a type representing a function that takes two arguments,
+// an accumulated value and an element, and returns the next accumulated value.
+// See the Inject function.
type Injector func(interface {}, interface {}) interface{};
// Inject combines the elements of iter by repeatedly calling f with an