:: x -> (x, x) package:relude

Creates a tuple by pairing something with itself.
>>> dup "foo"
("foo","foo")

>>> dup ()
((),())