From 96fdf4dae5537c25de3b37822319680b2c07c13b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Sun, 29 Jun 2014 11:44:25 +0200 Subject: [PATCH] Impl Rand for tuples of arity 11 and 12 --- src/librand/rand_impls.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librand/rand_impls.rs b/src/librand/rand_impls.rs index 3dd054cee9d1..77433877ec66 100644 --- a/src/librand/rand_impls.rs +++ b/src/librand/rand_impls.rs @@ -203,6 +203,8 @@ tuple_impl!{A, B, C, D, E, F, G} tuple_impl!{A, B, C, D, E, F, G, H} tuple_impl!{A, B, C, D, E, F, G, H, I} tuple_impl!{A, B, C, D, E, F, G, H, I, J} +tuple_impl!{A, B, C, D, E, F, G, H, I, J, K} +tuple_impl!{A, B, C, D, E, F, G, H, I, J, K, L} impl Rand for Option { #[inline]