You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
194 B

use super::*;
pub trait Tuple2Ext<T,U>: Sized
{
fn swap(self) -> (U, T);
}
impl<T, U> Tuple2Ext<T,U> for (T, U)
{
#[inline(always)] fn swap(self) -> (U, T) {
(self.1, self.0)
}
}