Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. trait Field {}
  2.  
  3. trait Vector {
  4. type MyField: Field;
  5. fn norm() -> Self::MyField;
  6. }
  7.  
  8. struct BaseFieldPrinter<F: Field>;
  9.  
  10. impl<V: Vector> BaseFieldPrinter<V::MyField> {
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement