Hi guys,
Is it possible to implement a generic method that could join slices of different types?
In my case I want &[str]
, &[Path]
, &[String]
I could make it generic over an Iterator and write my own join, but I wonder if it's possible to utilize an existing [T]::join
( which is using unstable Join trait)
Thanks.