tpl: Send actual values to in from intersect
authorCameron Moore <moorereason@gmail.com>
Sun, 13 Mar 2016 21:39:03 +0000 (16:39 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Mar 2016 19:09:43 +0000 (20:09 +0100)
commitdf44b1930a8b5be8959a808fc788a42c6b0166bb
tree759ad0bf2959a5c2ddd886239a5a0b119803eedc
parent600558273e34215098664290c3364d5291cdb77a
tpl: Send actual values to in from intersect

The `intersect` function uses `in` to avoid adding duplicates to the
resulting set.  We were passing `reflect.Value` items when we should
have been using `Value.Interface()` to send the actual data structure.
This fixes that.

See #1952
tpl/template_funcs.go
tpl/template_funcs_test.go