mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			477 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			477 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| use std::ops::Add;
 | |
| 
 | |
| // @has foo/struct.Simd.html '//pre[@class="rust item-decl"]' 'pub struct Simd<T, const WIDTH: usize>'
 | |
| pub struct Simd<T, const WIDTH: usize> {
 | |
|     inner: T,
 | |
| }
 | |
| 
 | |
| // @has foo/struct.Simd.html '//div[@id="trait-implementations-list"]//h3[@class="code-header"]' 'impl Add<Simd<u8, 16>> for Simd<u8, 16>'
 | |
| impl Add for Simd<u8, 16> {
 | |
|     type Output = Self;
 | |
| 
 | |
|     fn add(self, rhs: Self) -> Self::Output {
 | |
|         Self { inner: 0 }
 | |
|     }
 | |
| }
 | 
