diff options
| author | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-06-29 11:44:25 +0200 |
|---|---|---|
| committer | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-06-29 11:44:25 +0200 |
| commit | 96fdf4dae5537c25de3b37822319680b2c07c13b (patch) | |
| tree | b37ce3b699d34402ffd691ccfab8ce49a8174414 /src | |
| parent | e6d6c8beaa6a0b77334bdbed7105b3c3c17420be (diff) | |
| download | rust-96fdf4dae5537c25de3b37822319680b2c07c13b.tar.gz rust-96fdf4dae5537c25de3b37822319680b2c07c13b.zip | |
Impl Rand for tuples of arity 11 and 12
Diffstat (limited to 'src')
| -rw-r--r-- | src/librand/rand_impls.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librand/rand_impls.rs b/src/librand/rand_impls.rs index 3dd054cee9d..77433877ec6 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<T:Rand> Rand for Option<T> { #[inline] |
