mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| 
 | |
| 
 | |
| //@ has primitive_non_default_impl/fn.str_methods.html
 | |
| /// [`str::trim`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.str.html#method.trim"]' 'str::trim'
 | |
| /// [`str::to_lowercase`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.str.html#method.to_lowercase"]' 'str::to_lowercase'
 | |
| /// [`str::into_boxed_bytes`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.str.html#method.into_boxed_bytes"]' 'str::into_boxed_bytes'
 | |
| /// [`str::replace`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.str.html#method.replace"]' 'str::replace'
 | |
| pub fn str_methods() {}
 | |
| 
 | |
| //@ has primitive_non_default_impl/fn.f32_methods.html
 | |
| /// [f32::powi]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f32.html#method.powi"]' 'f32::powi'
 | |
| /// [f32::sqrt]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f32.html#method.sqrt"]' 'f32::sqrt'
 | |
| /// [f32::mul_add]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f32.html#method.mul_add"]' 'f32::mul_add'
 | |
| pub fn f32_methods() {}
 | |
| 
 | |
| //@ has primitive_non_default_impl/fn.f64_methods.html
 | |
| /// [`f64::powi`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f64.html#method.powi"]' 'f64::powi'
 | |
| /// [`f64::sqrt`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f64.html#method.sqrt"]' 'f64::sqrt'
 | |
| /// [`f64::mul_add`]
 | |
| //@ has - '//*[@href="{{channel}}/std/primitive.f64.html#method.mul_add"]' 'f64::mul_add'
 | |
| pub fn f64_methods() {}
 | 
