Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. fn decode<T>(storage: &mut T) -> IoResult<Self> where T: BufRead {
  2. let first = try!(U::Part::decode::<T>(storage));
  3. let second = try!(U::Part::decode::<T>(storage));
  4. Ok(U::join(first, second))
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement